Package mondrian.olap
Class DrillThrough
- java.lang.Object
-
- mondrian.olap.QueryPart
-
- mondrian.olap.DrillThrough
-
-
Constructor Summary
Constructors Constructor Description DrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList)Creates a DrillThrough.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]getChildren()Returns an array of the object's children.intgetFirstRowOrdinal()intgetMaxRowCount()QuerygetQuery()List<OlapElement>getReturnList()voidunparse(PrintWriter pw)Writes a string representation of this parse tree node to the given writer.
-
-
-
Method Detail
-
unparse
public void unparse(PrintWriter pw)
Description copied from class:QueryPartWrites a string representation of this parse tree node to the given writer.
-
getChildren
public Object[] getChildren()
Description copied from interface:WalkableReturns an array of the object's children. Those which are notWalkableare ignored.- Specified by:
getChildrenin interfaceWalkable- Overrides:
getChildrenin classQueryPart
-
getQuery
public Query getQuery()
-
getMaxRowCount
public int getMaxRowCount()
-
getFirstRowOrdinal
public int getFirstRowOrdinal()
-
getReturnList
public List<OlapElement> getReturnList()
-
-