Package mondrian.parser
Interface MdxParserValidator.QueryPartFactory
- 
- All Known Implementing Classes:
 Parser.FactoryImpl
- Enclosing interface:
 - MdxParserValidator
 
public static interface MdxParserValidator.QueryPartFactory 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DrillThroughmakeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList)Creates aDrillThroughobject.ExplainmakeExplain(QueryPart query)Creates anExplainobject.QuerymakeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation)Creates aQueryobject. 
 - 
 
- 
- 
Method Detail
- 
makeQuery
Query makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation)
Creates aQueryobject. Override this function to make your kind of query. 
- 
makeDrillThrough
DrillThrough makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList)
Creates aDrillThroughobject. 
 - 
 
 -