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