pt.compiler.parser.ast.stmt
Class TryStmt

java.lang.Object
  extended by pt.compiler.parser.ast.Node
      extended by pt.compiler.parser.ast.stmt.Statement
          extended by pt.compiler.parser.ast.stmt.TryStmt

public final class TryStmt
extends Statement

Author:
Julio Vilmar Gesser

Constructor Summary
TryStmt(int line, int column, BlockStmt tryBlock, java.util.List<CatchClause> catchs, BlockStmt finallyBlock)
           
 
Method Summary
<R,A> R
accept(GenericVisitor<R,A> v, A arg)
           
<A> void
accept(VoidVisitor<A> v, A arg)
           
 java.util.List<CatchClause> getCatchs()
           
 BlockStmt getFinallyBlock()
           
 BlockStmt getTryBlock()
           
 
Methods inherited from class pt.compiler.parser.ast.Node
getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, setData, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TryStmt

public TryStmt(int line,
               int column,
               BlockStmt tryBlock,
               java.util.List<CatchClause> catchs,
               BlockStmt finallyBlock)
Method Detail

getTryBlock

public BlockStmt getTryBlock()

getCatchs

public java.util.List<CatchClause> getCatchs()

getFinallyBlock

public BlockStmt getFinallyBlock()

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