Package org.apache.el.parser
Class SimpleNode
java.lang.Object
org.apache.el.parser.SimpleNode
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
ArithmeticNode,AstAssign,AstBracketSuffix,AstChoice,AstCompositeExpression,AstConcatenation,AstDeferredExpression,AstDotSuffix,AstDynamicExpression,AstEmpty,AstFloatingPoint,AstFunction,AstIdentifier,AstInteger,AstLambdaExpression,AstLambdaParameters,AstListData,AstLiteralExpression,AstMapData,AstMapEntry,AstMethodParameters,AstNegative,AstNot,AstNull,AstSemicolon,AstSetData,AstString,AstValue,BooleanNode
- Author:
- Jacob Hookom [jacob@hookom.net]
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(NodeVisitor visitor) booleangetImage()getMethodInfo(EvaluationContext ctx, Class<?>[] paramTypes) Class<?>getType(EvaluationContext ctx) inthashCode()invoke(EvaluationContext ctx, Class<?>[] paramTypes, Object[] paramValues) booleanbooleanvoidjjtAddChild(Node n, int i) This method tells the node to add its argument to the node's list of children.voidjjtClose()This method is called after all the child nodes have been added.jjtGetChild(int i) This method returns a child node.intReturn the number of children the node has.voidjjtOpen()This method is called after the node has been made the current node.voidjjtSetParent(Node n) This pair of methods are used to inform the node of its parent.voidvoidsetValue(EvaluationContext ctx, Object value) toString()
-
Field Details
-
parent
-
children
-
id
protected final int id -
image
-
-
Constructor Details
-
SimpleNode
public SimpleNode(int i)
-
-
Method Details
-
jjtOpen
public void jjtOpen()Description copied from interface:NodeThis method is called after the node has been made the current node. It indicates that child nodes can now be added to it. -
jjtClose
public void jjtClose()Description copied from interface:NodeThis method is called after all the child nodes have been added. -
jjtSetParent
Description copied from interface:NodeThis pair of methods are used to inform the node of its parent.- Specified by:
jjtSetParentin interfaceNode
-
jjtGetParent
- Specified by:
jjtGetParentin interfaceNode
-
jjtAddChild
Description copied from interface:NodeThis method tells the node to add its argument to the node's list of children.- Specified by:
jjtAddChildin interfaceNode
-
jjtGetChild
Description copied from interface:NodeThis method returns a child node. The children are numbered from zero, left to right.- Specified by:
jjtGetChildin interfaceNode
-
jjtGetNumChildren
public int jjtGetNumChildren()Description copied from interface:NodeReturn the number of children the node has.- Specified by:
jjtGetNumChildrenin interfaceNode
-
toString
-
getImage
-
setImage
-
getType
- Specified by:
getTypein interfaceNode- Throws:
ELException
-
getValue
- Specified by:
getValuein interfaceNode- Throws:
ELException
-
isReadOnly
- Specified by:
isReadOnlyin interfaceNode- Throws:
ELException
-
setValue
- Specified by:
setValuein interfaceNode- Throws:
ELException
-
accept
-
invoke
public Object invoke(EvaluationContext ctx, Class<?>[] paramTypes, Object[] paramValues) throws ELException - Specified by:
invokein interfaceNode- Throws:
ELException
-
getMethodInfo
- Specified by:
getMethodInfoin interfaceNode- Throws:
ELException
-
getMethodReference
- Specified by:
getMethodReferencein interfaceNode
-
hashCode
public int hashCode() -
equals
-
getValueReference
- Specified by:
getValueReferencein interfaceNode- Since:
- EL 2.2
-
isParametersProvided
public boolean isParametersProvided()- Specified by:
isParametersProvidedin interfaceNode- Since:
- EL 2.2
-