1 28 package net.sf.jasperreports.engine; 29 30 31 35 public interface JRExpression 36 { 37 38 39 43 public static final byte EVALUATION_TIME_NOW = 1; 44 45 46 49 public static final byte EVALUATION_TIME_REPORT = 2; 50 51 52 55 public static final byte EVALUATION_TIME_PAGE = 3; 56 57 58 61 public static final byte EVALUATION_TIME_COLUMN = 4; 62 63 64 67 public static final byte EVALUATION_TIME_GROUP = 5; 68 69 70 73 public static final byte EVALUATION_TIME_BAND = 6; 74 75 76 89 public static final byte EVALUATION_TIME_AUTO = 7; 90 91 94 public static final byte EVALUATION_OLD = 1; 95 public static final byte EVALUATION_ESTIMATED = 2; 96 public static final byte EVALUATION_DEFAULT = 3; 97 98 101 public static final Integer NOT_USED_ID = new Integer (-1); 102 103 106 public Class getValueClass(); 107 108 111 public String getValueClassName(); 112 113 116 public int getId(); 117 118 121 public JRExpressionChunk[] getChunks(); 122 123 126 public String getText(); 127 128 129 } 130 | Popular Tags |