예제 #1
0
 @Override
 public void build(final CmdBuilder cb) {
   cb.init().arg(C_TO, 0).arg(1);
 }
예제 #2
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();
 }
예제 #3
0
파일: AQuery.java 프로젝트: james-jw/basex
 @Override
 public void build(final CmdBuilder cb) {
   cb.init().xquery(0);
 }
예제 #4
0
파일: Command.java 프로젝트: plutext/basex
 @Override
 public final String toString() {
   final CmdBuilder cb = new CmdBuilder(this);
   build(cb);
   return cb.toString();
 }