01: //
02: // Generated by JTB 1.2.1
03: //
04:
05: package oscript.syntaxtree;
06:
07: /**
08: * The interface which NodeList, NodeListOptional, and NodeSequence
09: * implement.
10: */
11: public interface NodeListInterface extends Node {
12: public void addNode(Node n);
13:
14: public Node elementAt(int i);
15:
16: public java.util.Enumeration elements();
17:
18: public int size();
19: }
|