FileDocCategorySizeDatePackage
Node.javaAPI DocApache Tomcat 6.0.142739Fri Jul 20 04:20:32 BST 2007org.apache.el.parser

Node

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

Fields Summary
Constructors Summary
Methods Summary
public voidaccept(NodeVisitor visitor)

public java.lang.StringgetImage()

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

public java.lang.ClassgetType(org.apache.el.lang.EvaluationContext ctx)

public java.lang.ObjectgetValue(org.apache.el.lang.EvaluationContext ctx)

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

public booleanisReadOnly(org.apache.el.lang.EvaluationContext ctx)

public voidjjtAddChild(org.apache.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 org.apache.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 org.apache.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(org.apache.el.parser.Node n)
This pair of methods are used to inform the node of its parent.

public voidsetValue(org.apache.el.lang.EvaluationContext ctx, java.lang.Object value)