com.sun.el.parser
接口 Node

所有已知实现类:
ArithmeticNode, AstAnd, AstBracketSuffix, AstChoice, AstCompositeExpression, AstDeferredExpression, AstDiv, AstDotSuffix, AstDynamicExpression, AstEmpty, AstEqual, AstFalse, AstFloatingPoint, AstFunction, AstGreaterThan, AstGreaterThanEqual, AstIdentifier, AstInteger, AstLessThan, AstLessThanEqual, AstLiteralExpression, AstMethodSuffix, AstMinus, AstMod, AstMult, AstNegative, AstNot, AstNotEqual, AstNull, AstOr, AstPlus, AstPropertySuffix, AstString, AstTrue, AstValue, BooleanNode, SimpleNode

public interface Node

版本:
$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: hmalphett $
作者:
Jacob Hookom [jacob@hookom.net]

方法摘要
 void accept(NodeVisitor visitor)
           
 boolean equals(Object n)
           
 String getImage()
           
 MethodInfo getMethodInfo(EvaluationContext ctx, Class[] paramTypes)
           
 Class getType(EvaluationContext ctx)
           
 Object getValue(EvaluationContext ctx)
           
 ValueReference getValueReference(EvaluationContext ctx)
           
 int hashCode()
           
 Object invoke(EvaluationContext ctx, Class[] paramTypes, Object[] paramValues)
           
 boolean isParametersProvided()
           
 boolean isReadOnly(EvaluationContext ctx)
           
 void jjtAddChild(Node n, int i)
          This method tells the node to add its argument to the node's list of children.
 void jjtClose()
          This method is called after all the child nodes have been added.
 Node jjtGetChild(int i)
          This method returns a child node.
 int jjtGetNumChildren()
          Return the number of children the node has.
 Node jjtGetParent()
           
 void jjtOpen()
          This method is called after the node has been made the current node.
 void jjtSetParent(Node n)
          This pair of methods are used to inform the node of its parent.
 void setValue(EvaluationContext ctx, Object value)
           
 

方法详细信息

jjtOpen

void jjtOpen()
This method is called after the node has been made the current node. It indicates that child nodes can now be added to it.


jjtClose

void jjtClose()
This method is called after all the child nodes have been added.


jjtSetParent

void jjtSetParent(Node n)
This pair of methods are used to inform the node of its parent.


jjtGetParent

Node jjtGetParent()

jjtAddChild

void jjtAddChild(Node n,
                 int i)
This method tells the node to add its argument to the node's list of children.


jjtGetChild

Node jjtGetChild(int i)
This method returns a child node. The children are numbered from zero, left to right.


jjtGetNumChildren

int jjtGetNumChildren()
Return the number of children the node has.


getImage

String getImage()

getValue

Object getValue(EvaluationContext ctx)
                throws ELException
抛出:
ELException

setValue

void setValue(EvaluationContext ctx,
              Object value)
              throws ELException
抛出:
ELException

getType

Class getType(EvaluationContext ctx)
              throws ELException
抛出:
ELException

getValueReference

ValueReference getValueReference(EvaluationContext ctx)
                                 throws ELException
抛出:
ELException

isReadOnly

boolean isReadOnly(EvaluationContext ctx)
                   throws ELException
抛出:
ELException

accept

void accept(NodeVisitor visitor)
            throws ELException
抛出:
ELException

getMethodInfo

MethodInfo getMethodInfo(EvaluationContext ctx,
                         Class[] paramTypes)
                         throws ELException
抛出:
ELException

invoke

Object invoke(EvaluationContext ctx,
              Class[] paramTypes,
              Object[] paramValues)
              throws ELException
抛出:
ELException

equals

boolean equals(Object n)
覆盖:
Object 中的 equals

hashCode

int hashCode()
覆盖:
Object 中的 hashCode

isParametersProvided

boolean isParametersProvided()


Copyright © 2013. All Rights Reserved.