FileDocCategorySizeDatePackage
Node.javaAPI DocGlassfish v2 API3801Fri May 04 22:31:20 BST 2007com.sun.el.parser

Node

public interface Node
author
Jacob Hookom [jacob@hookom.net]
version
$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: tcfujii $

Fields Summary
Constructors Summary
Methods Summary
public voidaccept(com.sun.el.parser.NodeVisitor visitor)

public booleanequals(java.lang.Object n)

public java.lang.StringgetImage()

public javax.el.MethodInfogetMethodInfo(com.sun.el.lang.EvaluationContext ctx, java.lang.Class[] paramTypes)

public java.lang.ClassgetType(com.sun.el.lang.EvaluationContext ctx)

public java.lang.ObjectgetValue(com.sun.el.lang.EvaluationContext ctx)

public inthashCode()

public java.lang.Objectinvoke(com.sun.el.lang.EvaluationContext ctx, java.lang.Class[] paramTypes, java.lang.Object[] paramValues)

public booleanisReadOnly(com.sun.el.lang.EvaluationContext ctx)

public voidjjtAddChild(com.sun.el.parser.Node n, int i)
This method tells the node to add its argument to the node's list of children.

public voidjjtClose()
This method is called after all the child nodes have been added.

public com.sun.el.parser.NodejjtGetChild(int i)
This method returns a child node. The children are numbered from zero, left to right.

public intjjtGetNumChildren()
Return the number of children the node has.

public com.sun.el.parser.NodejjtGetParent()

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

public voidjjtSetParent(com.sun.el.parser.Node n)
This pair of methods are used to inform the node of its parent.

public voidsetValue(com.sun.el.lang.EvaluationContext ctx, java.lang.Object value)