001//
002// Generated by JTB 1.1.2
003//
004
005package jtb.cparser.syntaxtree;
006
007/**
008 * The interface which NodeList, NodeListOptional, and NodeSequence
009 * implement.
010 */
011public interface NodeListInterface extends Node {
012   public void addNode(Node n);
013   public Node elementAt(int i);
014   public java.util.Enumeration<Node> elements();
015   public int size();
016}