Package org.apache.commons.jexl3.parser
Class ASTNamespaceIdentifier
- java.lang.Object
-
- org.apache.commons.jexl3.parser.SimpleNode
-
- org.apache.commons.jexl3.parser.JexlNode
-
- org.apache.commons.jexl3.parser.ASTIdentifier
-
- org.apache.commons.jexl3.parser.ASTNamespaceIdentifier
-
- All Implemented Interfaces:
JexlCache.Reference,Node
public class ASTNamespaceIdentifier extends ASTIdentifier
Namespace : identifier.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.commons.jexl3.parser.JexlNode
JexlNode.Constant<T>, JexlNode.Funcall, JexlNode.Info, JexlNode.JxltHandle
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringnamespaceprivate static longserialVersionUID-
Fields inherited from class org.apache.commons.jexl3.parser.ASTIdentifier
flags, name, symbol
-
Fields inherited from class org.apache.commons.jexl3.parser.SimpleNode
id
-
-
Constructor Summary
Constructors Constructor Description ASTNamespaceIdentifier(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetNamespace()voidsetNamespace(java.lang.String ns, java.lang.String id)Sets the namespace:identifier.-
Methods inherited from class org.apache.commons.jexl3.parser.ASTIdentifier
getName, getSymbol, isCaptured, isConstant, isLexical, isRedefined, isShaded, jjtAccept, setCaptured, setConstant, setLexical, setRedefined, setShaded, setSymbol, setSymbol, toString
-
Methods inherited from class org.apache.commons.jexl3.parser.JexlNode
clearCache, getCache, getColumn, getLine, isConstant, isGlobalVar, isLeftValue, isSafeLhs, isStrictOperator, jexlInfo, jexlInfo, jjtSetFirstToken, jjtSetLastToken, setCache
-
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
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
namespace
private java.lang.String namespace
-
-
Method Detail
-
getNamespace
public java.lang.String getNamespace()
- Overrides:
getNamespacein classASTIdentifier
-
setNamespace
public void setNamespace(java.lang.String ns, java.lang.String id)Sets the namespace:identifier.- Parameters:
ns- the namespaceid- the names
-
-