Package mondrian.parser
Interface MdxParserValidator.QueryPartFactory
-
- All Known Implementing Classes:
IdBatchResolverTest.FactoryImplTestWrapper
,Parser.FactoryImpl
,ParserTest.TestParser
- Enclosing interface:
- MdxParserValidator
public static interface MdxParserValidator.QueryPartFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DrillThrough
makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, java.util.List<Exp> returnList)
Creates aDrillThrough
object.Explain
makeExplain(QueryPart query)
Creates anExplain
object.Query
makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, java.lang.String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation)
Creates aQuery
object.
-
-
-
Method Detail
-
makeQuery
Query makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, java.lang.String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation)
Creates aQuery
object. Override this function to make your kind of query.
-
makeDrillThrough
DrillThrough makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, java.util.List<Exp> returnList)
Creates aDrillThrough
object.
-
-