1 package polyglot.ast;2 3 /**4 * A <code>SwitchElement</code> is statement inside a switch.5 */6 public interface SwitchElement extends Stmt7 {8 }9