Example #1
0
 /*  6:   */
 /*  7:   */ public DisjunctionFragment addCondition(ConditionFragment fragment) /*  8:   */ {
   /*  9:37 */ if (this.buffer.length() > 0) {
     /* 10:37 */ this.buffer.append(" or ");
     /* 11:   */ }
   /* 12:38 */ this.buffer.append("(").append(fragment.toFragmentString()).append(")");
   /* 13:   */
   /* 14:   */
   /* 15:41 */ return this;
   /* 16:   */ }
 public DisjunctionFragment addCondition(ConditionFragment fragment) {
   if (buffer.length() > 0) buffer.append(" or ");
   buffer.append("(").append(fragment.toFragmentString()).append(")");
   return this;
 }