KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > SwitchBlock


1 package polyglot.ast;
2
3 import java.util.List JavaDoc;
4
5 /**
6  * A <code>SwitchBlock</code> is a list of statements within a switch.
7  */

8 public interface SwitchBlock extends SwitchElement, Block
9 {
10 }
11
Popular Tags