Example #1
0
 public void diff(
     String target,
     Revision pegRevision,
     Revision startRevision,
     Revision endRevision,
     String relativeToDir,
     String outFileName,
     int depth,
     String[] changelists,
     boolean ignoreAncestry,
     boolean noDiffDeleted,
     boolean force)
     throws ClientException {
   myDelegate.diff(
       target,
       pegRevision,
       startRevision,
       endRevision,
       relativeToDir,
       outFileName,
       depth,
       changelists,
       ignoreAncestry,
       noDiffDeleted,
       force);
 }
Example #2
0
 public void diff(
     String target1,
     Revision revision1,
     String target2,
     Revision revision2,
     String relativeToDir,
     String outFileName,
     int depth,
     String[] changelists,
     boolean ignoreAncestry,
     boolean noDiffDeleted,
     boolean force)
     throws ClientException {
   myDelegate.diff(
       target1,
       revision1,
       target2,
       revision2,
       relativeToDir,
       outFileName,
       depth,
       changelists,
       ignoreAncestry,
       noDiffDeleted,
       force);
 }
Example #3
0
 public LogMessage[] logMessages(
     String path,
     Revision revisionStart,
     Revision revisionEnd,
     boolean stopOnCopy,
     boolean discoverPath)
     throws ClientException {
   return myDelegate.logMessages(path, revisionStart, revisionEnd, stopOnCopy, discoverPath);
 }
Example #4
0
 public void blame(
     String path,
     Revision pegRevision,
     Revision revisionStart,
     Revision revisionEnd,
     final BlameCallback callback)
     throws ClientException {
   myDelegate.blame(path, pegRevision, revisionStart, revisionEnd, callback);
 }
Example #5
0
 public void info2(
     String pathOrUrl,
     Revision revision,
     Revision pegRevision,
     int depth,
     String[] changelists,
     InfoCallback callback)
     throws ClientException {
   myDelegate.info2(pathOrUrl, revision, pegRevision, depth, changelists, callback);
 }
Example #6
0
 public Status[] status(
     final String path,
     boolean descend,
     boolean onServer,
     boolean getAll,
     boolean noIgnore,
     boolean ignoreExternals)
     throws ClientException {
   return myDelegate.status(path, descend, onServer, getAll, noIgnore, ignoreExternals);
 }
Example #7
0
 public void properties(
     String path,
     Revision revision,
     Revision pegRevision,
     int depth,
     String[] changelists,
     ProplistCallback callback)
     throws ClientException {
   myDelegate.properties(path, revision, pegRevision, depth, changelists, callback);
 }
Example #8
0
 public void copy(
     CopySource[] sources,
     String destPath,
     String message,
     boolean copyAsChild,
     boolean makeParents,
     Map revpropTable)
     throws ClientException {
   myDelegate.copy(sources, destPath, message, copyAsChild, makeParents, revpropTable);
 }
Example #9
0
 public void diff(
     String target1,
     Revision revision1,
     String target2,
     Revision revision2,
     String outFileName,
     boolean recurse)
     throws ClientException {
   myDelegate.diff(target1, revision1, target2, revision2, outFileName, recurse);
 }
Example #10
0
 public long checkout(
     String moduleName,
     String destPath,
     Revision revision,
     Revision pegRevision,
     boolean recurse,
     boolean ignoreExternals)
     throws ClientException {
   return myDelegate.checkout(
       moduleName, destPath, revision, pegRevision, recurse, ignoreExternals);
 }
Example #11
0
 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);
 }
Example #12
0
 public void doImport(
     String path,
     String url,
     String message,
     int depth,
     boolean noIgnore,
     boolean ignoreUnknownNodeTypes,
     Map revpropTable)
     throws ClientException {
   myDelegate.doImport(path, url, message, depth, noIgnore, ignoreUnknownNodeTypes, revpropTable);
 }
Example #13
0
 public void merge(
     String path1,
     Revision revision1,
     String path2,
     Revision revision2,
     String localPath,
     boolean force,
     boolean recurse)
     throws ClientException {
   myDelegate.merge(path1, revision1, path2, revision2, localPath, force, recurse);
 }
Example #14
0
 public void list(
     String url,
     Revision revision,
     Revision pegRevision,
     int depth,
     int direntFields,
     boolean fetchLocks,
     ListCallback callback)
     throws ClientException {
   myDelegate.list(url, revision, pegRevision, depth, direntFields, fetchLocks, callback);
 }
Example #15
0
 public void propertySet(
     String path,
     String name,
     String value,
     int depth,
     String[] changelists,
     boolean force,
     Map revpropTable)
     throws ClientException {
   myDelegate.propertySet(path, name, value, depth, changelists, force, revpropTable);
 }
Example #16
0
 public long[] update(
     String[] path,
     Revision revision,
     int depth,
     boolean depthIsSticky,
     boolean ignoreExternals,
     boolean allowUnverObstructions)
     throws ClientException {
   return myDelegate.update(
       path, revision, depth, depthIsSticky, ignoreExternals, allowUnverObstructions);
 }
Example #17
0
 public long commit(
     String[] path,
     String message,
     int depth,
     boolean noUnlock,
     boolean keepChangelist,
     String[] changelists,
     Map revpropTable)
     throws ClientException {
   return myDelegate.commit(
       path, message, depth, noUnlock, keepChangelist, changelists, revpropTable);
 }
Example #18
0
 public void status(
     String path,
     int depth,
     boolean onServer,
     boolean getAll,
     boolean noIgnore,
     boolean ignoreExternals,
     String[] changelists,
     StatusCallback callback)
     throws ClientException {
   myDelegate.status(
       path, depth, onServer, getAll, noIgnore, ignoreExternals, changelists, callback);
 }
Example #19
0
 public void diffSummarize(
     String target1,
     Revision revision1,
     String target2,
     Revision revision2,
     int depth,
     String[] changelists,
     boolean ignoreAncestry,
     DiffSummaryReceiver receiver)
     throws ClientException {
   myDelegate.diffSummarize(
       target1, revision1, target2, revision2, depth, changelists, ignoreAncestry, receiver);
 }
Example #20
0
 public long doExport(
     String srcPath,
     String destPath,
     Revision revision,
     Revision pegRevision,
     boolean force,
     boolean ignoreExternals,
     int depth,
     String nativeEOL)
     throws ClientException {
   return myDelegate.doExport(
       srcPath, destPath, revision, pegRevision, force, ignoreExternals, depth, nativeEOL);
 }
Example #21
0
 public void merge(
     String path,
     Revision pegRevision,
     RevisionRange[] revisions,
     String localPath,
     boolean force,
     int depth,
     boolean ignoreAncestry,
     boolean dryRun,
     boolean recordOnly)
     throws ClientException {
   myDelegate.merge(
       path, pegRevision, revisions, localPath, force, depth, ignoreAncestry, dryRun, recordOnly);
 }
Example #22
0
 public void merge(
     String path,
     Revision pegRevision,
     Revision revision1,
     Revision revision2,
     String localPath,
     boolean force,
     boolean recurse,
     boolean ignoreAncestry,
     boolean dryRun)
     throws ClientException {
   myDelegate.merge(
       path, pegRevision, revision1, revision2, localPath, force, recurse, ignoreAncestry, dryRun);
 }
Example #23
0
 public long checkout(
     String moduleName,
     String destPath,
     Revision revision,
     Revision pegRevision,
     int depth,
     boolean ignoreExternals,
     boolean allowUnverObstructions)
     throws ClientException {
   return myDelegate.checkout(
       moduleName,
       destPath,
       revision,
       pegRevision,
       depth,
       ignoreExternals,
       allowUnverObstructions);
 }
Example #24
0
 public void blame(
     String path,
     Revision pegRevision,
     Revision revisionStart,
     Revision revisionEnd,
     boolean ignoreMimeType,
     boolean includeMergedRevisions,
     BlameCallback2 callback)
     throws ClientException {
   myDelegate.blame(
       path,
       pegRevision,
       revisionStart,
       revisionEnd,
       ignoreMimeType,
       includeMergedRevisions,
       callback);
 }
Example #25
0
 public void getMergeinfoLog(
     int kind,
     String pathOrUrl,
     Revision pegRevision,
     String mergeSourceUrl,
     Revision srcPegRevision,
     boolean discoverChangedPaths,
     String[] revprops,
     LogMessageCallback callback)
     throws ClientException {
   myDelegate.getMergeinfoLog(
       kind,
       pathOrUrl,
       pegRevision,
       mergeSourceUrl,
       srcPegRevision,
       discoverChangedPaths,
       revprops,
       callback);
 }
Example #26
0
 public void diffSummarize(
     String target,
     Revision pegRevision,
     Revision startRevision,
     Revision endRevision,
     int depth,
     String[] changelists,
     boolean ignoreAncestry,
     DiffSummaryReceiver receiver)
     throws ClientException {
   myDelegate.diffSummarize(
       target,
       pegRevision,
       startRevision,
       endRevision,
       depth,
       changelists,
       ignoreAncestry,
       receiver);
 }
Example #27
0
 public long doSwitch(
     String path,
     String url,
     Revision revision,
     Revision pegRevision,
     int depth,
     boolean depthIsSticky,
     boolean ignoreExternals,
     boolean allowUnverObstructions)
     throws ClientException {
   return myDelegate.doSwitch(
       path,
       url,
       revision,
       pegRevision,
       depth,
       depthIsSticky,
       ignoreExternals,
       allowUnverObstructions);
 }
Example #28
0
 public void logMessages(
     String path,
     Revision pegRevision,
     RevisionRange[] ranges,
     boolean stopOnCopy,
     boolean discoverPath,
     boolean includeMergedRevisions,
     String[] revProps,
     long limit,
     LogMessageCallback callback)
     throws ClientException {
   myDelegate.logMessages(
       path,
       pegRevision,
       ranges,
       stopOnCopy,
       discoverPath,
       includeMergedRevisions,
       revProps,
       limit,
       callback);
 }
Example #29
0
 public void diff(
     String target1,
     Revision revision1,
     String target2,
     Revision revision2,
     String outFileName,
     boolean recurse,
     boolean ignoreAncestry,
     boolean noDiffDeleted,
     boolean force)
     throws ClientException {
   myDelegate.diff(
       target1,
       revision1,
       target2,
       revision2,
       outFileName,
       recurse,
       ignoreAncestry,
       noDiffDeleted,
       force);
 }
Example #30
0
 public void diff(
     String target,
     Revision pegRevision,
     Revision startRevision,
     Revision endRevision,
     String outFileName,
     boolean recurse,
     boolean ignoreAncestry,
     boolean noDiffDeleted,
     boolean force)
     throws ClientException {
   myDelegate.diff(
       target,
       pegRevision,
       startRevision,
       endRevision,
       outFileName,
       recurse,
       ignoreAncestry,
       noDiffDeleted,
       force);
 }