< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java

Print this page




 141         /** Foreach-loops, of type ForeachLoop.
 142          */
 143         FOREACHLOOP,
 144 
 145         /** Labelled statements, of type Labelled.
 146          */
 147         LABELLED,
 148 
 149         /** Switch statements, of type Switch.
 150          */
 151         SWITCH,
 152 
 153         /** Case parts in switch statements/expressions, of type Case.
 154          */
 155         CASE,
 156 
 157         /** Switch expression statements, of type Switch.
 158          */
 159         SWITCH_EXPRESSION,
 160 
 161         /** Synchronized statements, of type Synchonized.
 162          */
 163         SYNCHRONIZED,
 164 
 165         /** Try statements, of type Try.
 166          */
 167         TRY,
 168 
 169         /** Catch clauses in try statements, of type Catch.
 170          */
 171         CATCH,
 172 
 173         /** Conditional expressions, of type Conditional.
 174          */
 175         CONDEXPR,
 176 
 177         /** Conditional statements, of type If.
 178          */
 179         IF,
 180 
 181         /** Expression statements, of type Exec.




 141         /** Foreach-loops, of type ForeachLoop.
 142          */
 143         FOREACHLOOP,
 144 
 145         /** Labelled statements, of type Labelled.
 146          */
 147         LABELLED,
 148 
 149         /** Switch statements, of type Switch.
 150          */
 151         SWITCH,
 152 
 153         /** Case parts in switch statements/expressions, of type Case.
 154          */
 155         CASE,
 156 
 157         /** Switch expression statements, of type Switch.
 158          */
 159         SWITCH_EXPRESSION,
 160 
 161         /** Synchronized statements, of type Synchronized.
 162          */
 163         SYNCHRONIZED,
 164 
 165         /** Try statements, of type Try.
 166          */
 167         TRY,
 168 
 169         /** Catch clauses in try statements, of type Catch.
 170          */
 171         CATCH,
 172 
 173         /** Conditional expressions, of type Conditional.
 174          */
 175         CONDEXPR,
 176 
 177         /** Conditional statements, of type If.
 178          */
 179         IF,
 180 
 181         /** Expression statements, of type Exec.


< prev index next >