1 package com.calipso.reportgenerator.reportcalculator; 2 3 /** 4 * Interface que implemetan tanto el Cube como el DataTree. 5 */ 6 7 public interface PivotClient { 8 9 public void reset(); 10 11 public void fillWith(Object[] row); 12 13 public void afterFill(); 14 } 15