Source code: javax/ide/model/java/source/tree/ConditionalStatementT.java
1 /*
2 * @(#)ConditionalStatementT.java
3 */
4
5 package javax.ide.model.java.source.tree;
6
7 /**
8 * Common supertype for compound statements having (requiring) a
9 * conditional expression. This includes: do, if, while. Note that a
10 * for expression is not considered to be a conditional statement. <p/>
11 *
12 * @author Andy Yu
13 * */
14 public interface ConditionalStatementT
15 extends CompoundStatementT
16 {
17 // ----------------------------------------------------------------------
18 }