コード例 #1
0
 public GetFightersLevelSum(final ArrayList<ParserObject> args) {
   super();
   if (args.isEmpty()) {
     return;
   }
   this.m_monsters = "monster".equalsIgnoreCase(args.get(0).getValue());
 }
コード例 #2
0
 public HasWorldProperty(final ArrayList<ParserObject> args) {
   super();
   final byte sigIdx = this.checkType(args);
   this.m_worldPropertyId = args.get(0);
   if (sigIdx == 1) {
     this.m_durationToCheck = args.get(1);
   }
   if (sigIdx == 2) {
     this.m_target = args.get(1).getValue().equalsIgnoreCase("target");
   }
 }