Home » openjdk-7 » com.sun.source » tree » [javadoc | source]
com.sun.source.tree
public interface: CatchTree [javadoc | source]

All Implemented Interfaces:
    Tree

All Known Implementing Classes:
    JCCatch

A tree node for a 'catch' block in a 'try' statement. For example:
  catch ( parameter )
      block
Method from com.sun.source.tree.CatchTree Summary:
getBlock,   getParameter
Method from com.sun.source.tree.CatchTree Detail:
 public BlockTree getBlock()
 public VariableTree getParameter()