コード例 #1
0
ファイル: InfoStorage.java プロジェクト: OliverEgli/basex-rss
 @Override
 public void build(final CommandBuilder cb) {
   cb.init(Cmd.INFO + " " + CmdInfo.STORAGE);
   if (args.length > 0 && args[0] != null && toInt(args[0]) == Integer.MIN_VALUE) {
     cb.xquery(0);
   } else {
     cb.arg(0).arg(1);
   }
 }
コード例 #2
0
ファイル: RepoList.java プロジェクト: OliverEgli/basex-rss
 @Override
 public void build(final CommandBuilder cb) {
   cb.init(Cmd.REPO + " " + CmdRepo.LIST).args();
 }