1 13 14 package mondrian.olap; 15 16 24 public interface Cell { 25 42 Object getValue(); 43 44 45 48 String getCachedFormatString(); 49 50 56 String getFormattedValue(); 57 58 61 boolean isNull(); 62 63 66 boolean isError(); 67 68 79 String getDrillThroughSQL(boolean extendedContext); 80 81 86 boolean canDrillThrough(); 87 88 91 int getDrillThroughCount(); 92 93 99 Object getPropertyValue(String propertyName); 100 101 116 Member getContextMember(Dimension dimension); 117 } 118 119 | Popular Tags |