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

Quick Search    Search Deep

Source code: javax/ide/model/java/source/tree/SwitchStatementT.java


1   /*
2    * @(#)SwitchStatementT.java
3    */
4   
5   package javax.ide.model.java.source.tree;
6   
7   /**
8    * A switch statement. JLS3 14.11.
9    *
10   * @author Andy Yu
11   * */
12  public interface SwitchStatementT
13    extends CompoundStatementT
14  {
15    // ----------------------------------------------------------------------
16  }