Package jtb.syntaxtree
Interface NodeListInterface
-
- All Superinterfaces:
Node
,Serializable
- All Known Implementing Classes:
NodeList
,NodeListOptional
,NodeSequence
public interface NodeListInterface extends Node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <R> R
accept(GJNoArguVisitor<R> v)
<R,A>
Raccept(GJVisitor<R,A> v, A argu)
<A> void
accept(GJVoidVisitor<A> v, A argu)
void
accept(Visitor v)
void
addNode(Node n)
Node
elementAt(int i)
Enumeration<Node>
elements()
int
size()
-
-
-
Method Detail
-
elements
Enumeration<Node> elements()
-
size
int size()
-
accept
<R> R accept(GJNoArguVisitor<R> v)
-
accept
<A> void accept(GJVoidVisitor<A> v, A argu)
-
-