Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.ide.model.java.source.tree
Interface CatchClauseT  view CatchClauseT download CatchClauseT.java

All Superinterfaces:
BlockElementT, CompoundStatementT, StatementT, Tree

public interface CatchClauseT
extends CompoundStatementT

A catch clause of a try statement. JLS3 14.20.


Field Summary
static CatchClauseT[] EMPTY_ARRAY
           
 
Method Summary
 FormalParameterT getCatchVariable()
          A catch clause declares one variable, the caught exception.
 TryStatementT getOwningTry()
           
 
Methods inherited from interface javax.ide.model.java.source.tree.CompoundStatementT
getControlExpression, getEndClause, getPrimaryClause
 
Methods inherited from interface javax.ide.model.java.source.tree.StatementT
getStatementLabels, getStatementToken
 
Methods inherited from interface javax.ide.model.java.source.tree.Tree
accept, accept, addSelf, addSelf, addSelfAfter, addSelfBefore, clearProperty, cloneSelf, getChildren, getOwningFile, getParent, getPosition, getProperty, getSiblingAfter, getSiblingBefore, getSiblings, getTreeKind, isSynthetic, removeSelf, replaceSelf, setProperty
 

Field Detail

EMPTY_ARRAY

public static final CatchClauseT[] EMPTY_ARRAY
Method Detail

getCatchVariable

public FormalParameterT getCatchVariable()
A catch clause declares one variable, the caught exception.


getOwningTry

public TryStatementT getOwningTry()