Package org.zkoss.zel.impl.parser
Class SimpleNode
- java.lang.Object
-
- org.zkoss.zel.impl.lang.ELSupport
-
- org.zkoss.zel.impl.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
public abstract class SimpleNode extends ELSupport implements Node
- Author:
- Jacob Hookom [jacob@hookom.net]
-
-
Field Summary
Fields Modifier and Type Field Description protected Node[]childrenprotected intidprotected java.lang.Stringimageprotected Nodeparent-
Fields inherited from class org.zkoss.zel.impl.lang.ELSupport
COERCE_NULL_TO_NULL, COERCE_TO_ZERO
-
-
Constructor Summary
Constructors Constructor Description SimpleNode(int i)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(NodeVisitor visitor)booleanequals(java.lang.Object obj)java.lang.StringgetImage()MethodInfogetMethodInfo(EvaluationContext ctx, java.lang.Class<?>[] paramTypes)java.lang.Class<?>getType(EvaluationContext ctx)java.lang.ObjectgetValue(EvaluationContext ctx)ValueReferencegetValueReference(EvaluationContext ctx)inthashCode()java.lang.Objectinvoke(EvaluationContext ctx, java.lang.Class<?>[] paramTypes, java.lang.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.intjjtGetNumSiblings()Returns total siblings (including self) of this node; so at least return one.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(java.lang.String image)voidsetValue(EvaluationContext ctx, java.lang.Object value)java.lang.StringtoString()-
Methods inherited from class org.zkoss.zel.impl.lang.ELSupport
coerceToBoolean, coerceToDateTime, coerceToEnum, coerceToNumber, coerceToNumber, coerceToNumber, coerceToString, coerceToType, coerceToTypeForSetValue, compare, equals, isBigDecimalOp, isBigIntegerOp, isDateTimeType, isDoubleOp, isLongOp, isStringFloat
-
-
-
-
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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
setImage
public void setImage(java.lang.String image)
-
getType
public java.lang.Class<?> getType(EvaluationContext ctx) throws ELException
- Specified by:
getTypein interfaceNode- Throws:
ELException
-
getValue
public java.lang.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, java.lang.Object value) throws ELException
- Specified by:
setValuein interfaceNode- Throws:
ELException
-
accept
public void accept(NodeVisitor visitor) throws java.lang.Exception
-
invoke
public java.lang.Object invoke(EvaluationContext ctx, java.lang.Class<?>[] paramTypes, java.lang.Object[] paramValues) throws ELException
- Specified by:
invokein interfaceNode- Throws:
ELException
-
getMethodInfo
public MethodInfo getMethodInfo(EvaluationContext ctx, java.lang.Class<?>[] paramTypes) throws ELException
- Specified by:
getMethodInfoin interfaceNode- Throws:
ELException
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
getValueReference
public ValueReference getValueReference(EvaluationContext ctx)
- Specified by:
getValueReferencein interfaceNode- Since:
- EL 2.2
-
isParametersProvided
public boolean isParametersProvided()
- Specified by:
isParametersProvidedin interfaceNode- Since:
- EL 2.2
-
jjtGetNumSiblings
public int jjtGetNumSiblings()
Returns total siblings (including self) of this node; so at least return one.- Since:
- ZEL 2.2.2
-
-