- java.lang.Object
-
- com.sun.el.lang.ELSupport
-
- com.sun.el.parser.SimpleNode
-
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
ArithmeticNode,AstAssign,AstBracketSuffix,AstChoice,AstCompositeExpression,AstConcat,AstDeferredExpression,AstDotSuffix,AstDynamicExpression,AstEmpty,AstFloatingPoint,AstFunction,AstIdentifier,AstInteger,AstLambdaExpression,AstLambdaParameters,AstListData,AstLiteralExpression,AstMapData,AstMapEntry,AstMethodArguments,AstNegative,AstNot,AstNull,AstSemiColon,AstString,AstValue,BooleanNode
public abstract class SimpleNode extends ELSupport implements Node
- Version:
- $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: kchung $
- Author:
- Jacob Hookom [jacob@hookom.net]
-
-
Constructor Summary
Constructors Constructor Description SimpleNode(int i)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(NodeVisitor visitor)voiddump(String prefix)booleanequals(Object node)StringgetImage()jakarta.el.MethodInfogetMethodInfo(EvaluationContext ctx, Class[] paramTypes)ClassgetType(EvaluationContext ctx)ObjectgetValue(EvaluationContext ctx)jakarta.el.ValueReferencegetValueReference(EvaluationContext ctx)inthashCode()Objectinvoke(EvaluationContext ctx, Class[] paramTypes, Object[] paramValues)booleanisParametersProvided()booleanisReadOnly(EvaluationContext ctx)voidjjtAddChild(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.NodejjtGetChild(int i)This method returns a child node.intjjtGetNumChildren()Return the number of children the node has.NodejjtGetParent()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.voidsetImage(String image)voidsetValue(EvaluationContext ctx, Object value)StringtoString()StringtoString(String prefix)-
Methods inherited from class com.sun.el.lang.ELSupport
checkType, coerceToBoolean, coerceToCharacter, coerceToEnum, coerceToNumber, coerceToNumber, coerceToNumber, coerceToNumber, coerceToString, coerceToType, coerceToType, compare, containsNulls, equals, isBigDecimalOp, isBigIntegerOp, isDoubleOp, isDoubleStringOp, isLongOp, isStringFloat, throwUnhandled, toFloat, toNumber
-
-
-
-
Method Detail
-
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
public void jjtSetParent(Node n)
Description copied from interface:NodeThis pair of methods are used to inform the node of its parent.- Specified by:
jjtSetParentin interfaceNode
-
jjtGetParent
public Node jjtGetParent()
- Specified by:
jjtGetParentin interfaceNode
-
jjtAddChild
public void jjtAddChild(Node n, int i)
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
public Node jjtGetChild(int i)
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
-
dump
public void dump(String prefix)
-
setImage
public void setImage(String image)
-
getType
public Class getType(EvaluationContext ctx) throws jakarta.el.ELException
-
getValue
public Object getValue(EvaluationContext ctx) throws jakarta.el.ELException
-
getValueReference
public jakarta.el.ValueReference getValueReference(EvaluationContext ctx) throws jakarta.el.ELException
- Specified by:
getValueReferencein interfaceNode- Throws:
jakarta.el.ELException
-
isReadOnly
public boolean isReadOnly(EvaluationContext ctx) throws jakarta.el.ELException
- Specified by:
isReadOnlyin interfaceNode- Throws:
jakarta.el.ELException
-
setValue
public void setValue(EvaluationContext ctx, Object value) throws jakarta.el.ELException
-
accept
public void accept(NodeVisitor visitor) throws jakarta.el.ELException
-
invoke
public Object invoke(EvaluationContext ctx, Class[] paramTypes, Object[] paramValues) throws jakarta.el.ELException
-
getMethodInfo
public jakarta.el.MethodInfo getMethodInfo(EvaluationContext ctx, Class[] paramTypes) throws jakarta.el.ELException
- Specified by:
getMethodInfoin interfaceNode- Throws:
jakarta.el.ELException
-
equals
public boolean equals(Object node)
-
isParametersProvided
public boolean isParametersProvided()
- Specified by:
isParametersProvidedin interfaceNode
-
-