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:
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
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
namespace
private static long
serialVersionUID
-
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.String
getNamespace()
void
setNamespace(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, getColumn, getLine, isConstant, isGlobalVar, 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
-
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:
getNamespace
in classASTIdentifier
-
setNamespace
public void setNamespace(java.lang.String ns, java.lang.String id)
Sets the namespace:identifier.- Parameters:
ns
- the namespaceid
- the names
-
-