コード例 #1
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 public void move(
     String[] srcPaths,
     String destPath,
     String message,
     boolean force,
     boolean moveAsChild,
     boolean makeParents,
     Map revpropTable)
     throws ClientException {
   myDelegate.move(srcPaths, destPath, message, force, moveAsChild, makeParents, revpropTable);
 }
コード例 #2
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 public void move(String srcPath, String destPath, String message, boolean force)
     throws ClientException {
   myDelegate.move(srcPath, destPath, message, force);
 }