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