1 /* JJT: 0.2.2 */ 2 3 package mobisnap.mobile_trx; 4 5 /*** 6 * Relational operator 7 */ 8 public class ASTRelop extends mobisnap.mobile_trx.SimpleNode { 9 public static final int OP_EQUAL = RelopCondition.OP_EQUAL; 10 public static final int OP_NOTEQUAL = RelopCondition.OP_NOTEQUAL; 11 public static final int OP_CARDINAL = RelopCondition.OP_CARDINAL; 12 public static final int OP_MOREORLESS = RelopCondition.OP_MOREORLESS; 13 public static final int OP_MORE = RelopCondition.OP_MORE; 14 public static final int OP_MOREEQUAL = RelopCondition.OP_MOREEQUAL; 15 public static final int OP_LESS = RelopCondition.OP_LESS; 16 public static final int OP_LESSEQUAL = RelopCondition.OP_LESSEQUAL; 17 18 public int type; 19 20 21 public ASTRelop(int id) { 22 super(id); 23 } 24 25 public ASTRelop( MobisnapSQL p, int i) { 26 super( p, i); 27 id = i; 28 } 29 30 /*** Accept the visitor. **/ 31 public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) { 32 return visitor.visit(this, data); 33 } 34 35 36 }

This page was automatically generated by Maven