コード例 #1
0
ファイル: Command.java プロジェクト: plutext/basex
 /**
  * Builds a string representation from the command. This string must be correctly built, as
  * commands are sent to the server as strings.
  *
  * @param cb command builder
  */
 protected void build(final CmdBuilder cb) {
   cb.init().args();
 }
コード例 #2
0
ファイル: Command.java プロジェクト: plutext/basex
 @Override
 public final String toString() {
   final CmdBuilder cb = new CmdBuilder(this);
   build(cb);
   return cb.toString();
 }