|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ASTRelop.java | - | 0% | 0% | 0% |
|
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 | 0 |
public ASTRelop(int id) { |
22 | 0 |
super(id);
|
23 |
} |
|
24 |
|
|
25 | 0 |
public ASTRelop( MobisnapSQL p, int i) { |
26 | 0 |
super( p, i);
|
27 | 0 |
id = i; |
28 |
} |
|
29 |
|
|
30 |
/** Accept the visitor. **/
|
|
31 | 0 |
public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) {
|
32 | 0 |
return visitor.visit(this, data); |
33 |
} |
|
34 |
|
|
35 |
|
|
36 |
} |
|
37 |
|
|