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

All Implemented Interfaces:
    StatementTree

All Known Implementing Classes:
    JCTry

A tree node for a 'try' statement. For example:
  try
      block
  catches
  finally
      finallyBlock
Method from com.sun.source.tree.TryTree Summary:
getBlock,   getCatches,   getFinallyBlock,   getResources
Method from com.sun.source.tree.TryTree Detail:
 public BlockTree getBlock()
 public List<CatchTree> getCatches()
 public BlockTree getFinallyBlock()
 public List<Tree> getResources()