public final class CatchClause extends Node
| Constructor and Description | 
|---|
| CatchClause() | 
| CatchClause(int beginLine,
           int beginColumn,
           int endLine,
           int endColumn,
           Parameter except,
           BlockStmt catchBlock) | 
| CatchClause(Parameter except,
           BlockStmt catchBlock) | 
| Modifier and Type | Method and Description | 
|---|---|
| <R,A> R | accept(GenericVisitor<R,A> v,
      A arg)Accept method for visitor support. | 
| <A> void | accept(VoidVisitor<A> v,
      A arg)Accept method for visitor support. | 
| BlockStmt | getCatchBlock() | 
| Parameter | getExcept() | 
| void | setCatchBlock(BlockStmt catchBlock) | 
| void | setExcept(Parameter except) | 
equals, getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, hashCode, setBeginColumn, setBeginLine, setData, setEndColumn, setEndLine, toStringpublic <R,A> R accept(GenericVisitor<R,A> v, A arg)
Nodepublic <A> void accept(VoidVisitor<A> v, A arg)
Nodepublic BlockStmt getCatchBlock()
public Parameter getExcept()
public void setCatchBlock(BlockStmt catchBlock)
public void setExcept(Parameter except)