1 28 package net.sf.jasperreports.engine.fill; 29 30 37 public interface JRCalculable 38 { 39 42 static final byte HELPER_COUNT = 0; 43 44 47 static final byte HELPER_SUM = 1; 48 49 52 static final byte HELPER_VARIANCE = 2; 53 54 57 static final int HELPER_SIZE = 3; 58 59 60 65 boolean isInitialized(); 66 67 68 73 void setInitialized(boolean isInitialized); 74 75 76 81 Object getIncrementedValue(); 82 83 84 89 Object getValue(); 90 91 92 98 JRCalculable getHelperVariable(byte helperType); 99 } 100 | Popular Tags |