summaryrefslogtreecommitdiff
path: root/plugins/svn4idea/src/org/jetbrains/idea/svn/checkout/ExportClient.java
blob: 6ddd6debe7636e3fa833cafa5460580b45a0ce95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.jetbrains.idea.svn.checkout;

import com.intellij.openapi.vcs.VcsException;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.idea.svn.api.SvnClient;
import org.tmatesoft.svn.core.SVNDepth;
import org.tmatesoft.svn.core.wc.ISVNEventHandler;
import org.tmatesoft.svn.core.wc.SVNRevision;
import org.tmatesoft.svn.core.wc2.SvnTarget;

import java.io.File;

/**
 * @author Konstantin Kolosovsky.
 */
public interface ExportClient extends SvnClient {

  void export(@NotNull SvnTarget from,
              @NotNull File to,
              @Nullable SVNRevision revision,
              @Nullable SVNDepth depth,
              @Nullable String nativeLineEnd,
              boolean force,
              boolean ignoreExternals,
              @Nullable ISVNEventHandler handler) throws VcsException;
}