|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ICompiler
This interface presents the methods which will be implemented by the different compiles.
Warning: This component is not published. It is part of module implementation. Client module should not use this feature.
Method Summary | |
---|---|
void |
compileExpression()
Compiles the source string to produce an Expression . |
void |
compileFilter()
Compiles the source string to produce a Filter . |
void |
compileFilterList()
Compiles the source string to produce a List of Filter . |
Expression |
getExpression()
The resultant Expression of the compilation. |
Filter |
getFilter()
The resultant filter of the compilation |
List<Filter> |
getFilterList()
Return the compilation result. |
String |
getSource()
|
IToken |
getTokenInPosition(int position)
Return the token presents in the position specified. |
Method Detail |
---|
String getSource()
void compileFilter() throws CQLException
Filter
.
The filter result must be retrieved with getFilter()
.
CQLException
Filter getFilter() throws CQLException
CQLException
compileFilter()
void compileExpression() throws CQLException
Expression
.
The resultant expression must be retrieved with getExpression()
.
CQLException
Expression getExpression() throws CQLException
Expression
of the compilation.
CQLException
compileExpression()
void compileFilterList() throws CQLException
List
of Filter
.
The result must be retrieved with getFilterList()()
.
CQLException
List<Filter> getFilterList() throws CQLException
CQLException
compileFilterList()
IToken getTokenInPosition(int position)
position
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |