001// 002// Generated by JTB 1.1.2 003// 004 005package jtb.cparser.syntaxtree; 006 007// Grammar production: 008// f0 -> ( Statement() )+ 009public class StatementList implements Node { 010 static final long serialVersionUID = 20050923L; 011 012 public NodeList f0; 013 014 public StatementList(NodeList n0) { 015 f0 = n0; 016 } 017 018 public void accept(jtb.cparser.visitor.Visitor v) { 019 v.visit(this); 020 } 021}