Package org.apache.commons.jexl3.parser
Class ASTIdentifierAccessJxlt
- java.lang.Object
-
- org.apache.commons.jexl3.parser.SimpleNode
-
- org.apache.commons.jexl3.parser.JexlNode
-
- org.apache.commons.jexl3.parser.ASTIdentifierAccess
-
- org.apache.commons.jexl3.parser.ASTIdentifierAccessJxlt
-
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
ASTIdentifierAccessSafeJxlt
public class ASTIdentifierAccessJxlt extends ASTIdentifierAccess
x.`expr`.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.commons.jexl3.parser.JexlNode
JexlNode.Constant<T>, JexlNode.Funcall, JexlNode.Info
-
-
Field Summary
Fields Modifier and Type Field Description protected JxltEngine.Expression
jxltExpression
-
Fields inherited from class org.apache.commons.jexl3.parser.SimpleNode
id
-
-
Constructor Summary
Constructors Constructor Description ASTIdentifierAccessJxlt(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JxltEngine.Expression
getExpression()
boolean
isExpression()
Whether this is a Jxlt based identifier.void
setExpression(JxltEngine.Expression tp)
-
Methods inherited from class org.apache.commons.jexl3.parser.ASTIdentifierAccess
getIdentifier, getName, isGlobalVar, isSafe, jjtAccept, parseIdentifier, setIdentifier, toString
-
Methods inherited from class org.apache.commons.jexl3.parser.JexlNode
clearCache, getColumn, getLine, isConstant, isConstant, isLeftValue, isSafeLhs, isStrictOperator, jexlInfo, jjtSetFirstToken, jjtSetLastToken
-
Methods inherited from class org.apache.commons.jexl3.parser.SimpleNode
childrenAccept, dump, dumpOut, getId, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetChildren, jjtSetParent, jjtSetValue, toString
-
-
-
-
Field Detail
-
jxltExpression
protected transient JxltEngine.Expression jxltExpression
-
-
Method Detail
-
getExpression
public JxltEngine.Expression getExpression()
-
isExpression
public boolean isExpression()
Description copied from class:ASTIdentifierAccess
Whether this is a Jxlt based identifier.- Overrides:
isExpression
in classASTIdentifierAccess
- Returns:
- true if `..${...}...`, false otherwise
-
setExpression
public void setExpression(JxltEngine.Expression tp)
-
-