Пример #1
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);
 }
Пример #2
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);
 }
Пример #3
0
 public long checkout(String moduleName, String destPath, Revision revision, boolean recurse)
     throws ClientException {
   return myDelegate.checkout(moduleName, destPath, revision, recurse);
 }