01: package com.calipso.reportgenerator.reportcalculator; 02: 03: /** 04: * Interface que implemetan tanto el Cube como el DataTree. 05: */ 06: 07: public interface PivotClient { 08: 09: public void reset(); 10: 11: public void fillWith(Object[] row); 12: 13: public void afterFill(); 14: }