1 19 20 package org.netbeans.modules.xml.xpath; 21 22 28 public interface XPathCoreOperation extends XPathOperationOrFuntion { 29 30 31 public static final int OP_SUM = 1; 32 33 34 public static final int OP_MINUS = 2; 35 36 37 public static final int OP_MULT = 3; 38 39 40 public static final int OP_DIV = 4; 41 42 43 public static final int OP_MOD = 5; 44 45 46 public static final int OP_NEGATIVE = 6; 47 48 49 public static final int OP_AND = 7; 50 51 52 public static final int OP_OR = 8; 53 54 55 public static final int OP_EQ = 9; 56 57 58 public static final int OP_NE = 10; 59 60 61 public static final int OP_LT = 11; 62 63 64 public static final int OP_LE = 12; 65 66 67 public static final int OP_GT = 13; 68 69 70 public static final int OP_GE = 14; 71 72 73 77 int getOperator(); 78 79 80 84 void setOperator(int operator); 85 86 87 88 92 String getSign(); 93 } 94 | Popular Tags |