KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > reportcalculator > PivotClient


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 JavaDoc[] row);
12
13   public void afterFill();
14 }
15
Popular Tags