summaryrefslogtreecommitdiff
path: root/plugins/svn4idea/src/org/jetbrains/idea/svn/copy/CopyMoveClient.java
blob: dd4395f612b6eef870c16cee88d06513b4347cb7 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package org.jetbrains.idea.svn.copy;

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.jetbrains.idea.svn.checkin.CommitEventHandler;
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 CopyMoveClient extends SvnClient {

  void copy(@NotNull File src, @NotNull File dst, boolean makeParents, boolean isMove) throws VcsException;

  /**
   * @param source
   * @param destination
   * @param revision
   * @param makeParents
   * @param isMove
   * @param message
   * @param handler
   * @return new revision number
   * @throws VcsException
   */
  long copy(@NotNull SvnTarget source,
            @NotNull SvnTarget destination,
            @Nullable SVNRevision revision,
            boolean makeParents,
            boolean isMove,
            @NotNull String message,
            @Nullable CommitEventHandler handler) throws VcsException;

  void copy(@NotNull SvnTarget source,
            @NotNull File destination,
            @Nullable SVNRevision revision,
            boolean makeParents,
            @Nullable ISVNEventHandler handler) throws VcsException;
}