Source code: javax/ide/model/java/source/tree/FinallyClauseT.java
1 /*
2 * @(#)FinallyClauseT.java
3 */
4
5 package javax.ide.model.java.source.tree;
6
7 /**
8 * A finally clause. JLS3 14.20. <p/>
9 *
10 * @author Andy Yu
11 * */
12 public interface FinallyClauseT
13 extends CompoundStatementT
14 {
15 // ----------------------------------------------------------------------
16
17 /**
18 * @return The owning try statement. Null if none (i.e. deformed tree).
19 */
20 public TryStatementT getOwningTry();
21 }