01: package com.calipso.reportgenerator.reportcalculator;
02:
03: /**
04: * Interface que publica los metodos a implementar por la
05: * clase <code>DataTree</code>
06: */
07:
08: public interface DataTreeDefinition {
09: public Object[] getGroupingDimensions();
10:
11: public Object[] getNonGroupingDimensions();
12:
13: public Object[] getMetrics();
14:
15: public Object[] getAccumulableMetrics();
16:
17: public boolean getAccumulable();
18: }
|