Package org.jdesktop.el.impl.parser
Class SimpleNode
- java.lang.Object
-
- org.jdesktop.el.impl.lang.ELSupport
-
- org.jdesktop.el.impl.parser.SimpleNode
-
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
ArithmeticNode,AstBracketSuffix,AstChoice,AstCompositeExpression,AstDeferredExpression,AstDotSuffix,AstDynamicExpression,AstEmpty,AstFloatingPoint,AstFunction,AstIdentifier,AstInteger,AstLiteralExpression,AstNegative,AstNot,AstNull,AstString,AstValue,BooleanNode
public abstract class SimpleNode extends ELSupport implements Node
- Version:
- $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: spuhl $
- 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)StringgetImage()MethodInfogetMethodInfo(EvaluationContext ctx, Class[] paramTypes)ClassgetType(EvaluationContext ctx)ObjectgetValue(EvaluationContext ctx)Objectinvoke(EvaluationContext ctx, Class[] paramTypes, Object[] paramValues)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 org.jdesktop.el.impl.lang.ELSupport
coerceToBoolean, coerceToCharacter, coerceToEnum, coerceToNumber, coerceToNumber, coerceToNumber, coerceToNumber, coerceToString, 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 ELException
- Specified by:
getTypein interfaceNode- Throws:
ELException
-
getValue
public Object getValue(EvaluationContext ctx) throws ELException
- Specified by:
getValuein interfaceNode- Throws:
ELException
-
isReadOnly
public boolean isReadOnly(EvaluationContext ctx) throws ELException
- Specified by:
isReadOnlyin interfaceNode- Throws:
ELException
-
setValue
public void setValue(EvaluationContext ctx, Object value) throws ELException
- Specified by:
setValuein interfaceNode- Throws:
ELException
-
accept
public void accept(NodeVisitor visitor) throws ELException
- Specified by:
acceptin interfaceNode- Throws:
ELException
-
invoke
public Object invoke(EvaluationContext ctx, Class[] paramTypes, Object[] paramValues) throws ELException
- Specified by:
invokein interfaceNode- Throws:
ELException
-
getMethodInfo
public MethodInfo getMethodInfo(EvaluationContext ctx, Class[] paramTypes) throws ELException
- Specified by:
getMethodInfoin interfaceNode- Throws:
ELException
-
-