1 28 package net.sf.jasperreports.crosstabs; 29 30 import net.sf.jasperreports.engine.JRExpression; 31 import net.sf.jasperreports.engine.JRVariable; 32 33 42 public interface JRCrosstabMeasure 43 { 44 48 public static final byte PERCENTAGE_TYPE_NONE = 0; 49 50 54 public static final byte PERCENTAGE_TYPE_GRAND_TOTAL = 1; 55 56 57 63 public String getName(); 64 65 66 71 public String getValueClassName(); 72 73 74 79 public Class getValueClass(); 80 81 82 87 public JRExpression getValueExpression(); 88 89 90 105 public byte getCalculation(); 106 107 108 117 public String getIncrementerFactoryClassName(); 118 119 120 126 public Class getIncrementerFactoryClass(); 127 128 129 147 public byte getPercentageOfType(); 148 149 150 155 public String getPercentageCalculatorClassName(); 156 157 158 163 public Class getPercentageCalculatorClass(); 164 165 166 175 public JRVariable getVariable(); 176 } 177 | Popular Tags |