コード例 #1
0
 public List<Model> executeList(CommandContext commandContext, Page page) {
   checkQueryOk();
   return commandContext.getModelEntityManager().findModelsByQueryCriteria(this, page);
 }
コード例 #2
0
 public long executeCount(CommandContext commandContext) {
   checkQueryOk();
   return commandContext.getModelEntityManager().findModelCountByQueryCriteria(this);
 }