pt.compiler.parser.ast.stmt
Class LabeledStmt
java.lang.Object
pt.compiler.parser.ast.Node
pt.compiler.parser.ast.stmt.Statement
pt.compiler.parser.ast.stmt.LabeledStmt
public final class LabeledStmt
- extends Statement
- Author:
- Julio Vilmar Gesser
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
LabeledStmt
public LabeledStmt(int line,
int column,
java.lang.String label,
Statement stmt)
getLabel
public java.lang.String getLabel()
getStmt
public Statement getStmt()
accept
public <A> void accept(VoidVisitor<A> v,
A arg)
- Overrides:
accept
in class Node
accept
public <R,A> R accept(GenericVisitor<R,A> v,
A arg)
- Overrides:
accept
in class Node