1 13 14 package com.tonbeller.jpivot.olap.model; 15 16 import java.util.List ; 17 import java.util.Map ; 18 19 22 public interface QueryResultHandler { 23 24 27 void handleAxisInfo(String axisName, int axisNumber); 28 29 32 void handleHierInfo(String hierName, int axisNumber, int number); 33 34 37 void handleAxis(String axisName, int axisOrdinal); 38 39 42 void handleTuple(int axisOrdinal, int positionOrdinal); 43 44 47 void handleMember( 48 String uniqueName, 49 String caption, 50 String levUName, 51 String displayInfo, 52 Map otherProps, 53 int axisOrdinal, 54 int positionOrdinal, 55 int memberOrdinal); 56 57 60 void handleCellData(); 61 62 65 void handleCell( int iOrdinal, Object value, String fmtValue, String fontSize); 66 67 68 72 void setDrillHeader ( Map header); 73 74 78 void setDrillRows(List rows); 79 80 81 } | Popular Tags |