Exemplo n.º 1
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);
 }
Exemplo n.º 2
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);
 }
Exemplo n.º 3
0
 public Status[] status(
     String path, boolean descend, boolean onServer, boolean getAll, boolean noIgnore)
     throws ClientException {
   return myDelegate.status(path, descend, onServer, getAll, noIgnore, false);
 }