コード例 #1
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 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);
 }
コード例 #2
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 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);
 }
コード例 #3
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 public Status[] status(
     String path, boolean descend, boolean onServer, boolean getAll, boolean noIgnore)
     throws ClientException {
   return myDelegate.status(path, descend, onServer, getAll, noIgnore, false);
 }