IDEADEV-41062 (Map help button of "Import into Subversion" dialog box)
[fedora-idea.git] / plugins / svn4idea / src / org / jetbrains / idea / svn / SvnFileUrlMapping.java
blobe0da91afb019d51b4fc011baebc64eeb52a99549
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.jetbrains.idea.svn;
18 import com.intellij.openapi.vcs.AbstractVcs;
19 import com.intellij.openapi.vfs.VirtualFile;
20 import org.jetbrains.annotations.Nullable;
21 import org.tmatesoft.svn.core.SVNURL;
23 import java.io.File;
24 import java.util.List;
26 public interface SvnFileUrlMapping extends AbstractVcs.RootsConvertor {
27 @Nullable
28 SVNURL getUrlForFile(final File file);
30 @Nullable
31 String getLocalPath(final String url);
33 @Nullable
34 RootUrlInfo getWcRootForUrl(final String url);
36 List<RootUrlInfo> getAllWcInfos();
38 @Nullable
39 RootUrlInfo getWcRootForFilePath(final File file);
41 /**
42 * @return true if roots under SVN set by the user differs from real WC roots (are under specified roots)
44 boolean rootsDiffer();
46 VirtualFile[] getNotFilteredRoots();
48 boolean isEmpty();