Home » openjdk-7 » com.sun.source » tree » [javadoc | source]
com.sun.source.tree
public interface: SwitchTree [javadoc | source]

All Implemented Interfaces:
    StatementTree

All Known Implementing Classes:
    JCSwitch

A tree node for a 'switch' statement. For example:
  switch ( expression ) {
    cases
  }
Method from com.sun.source.tree.SwitchTree Summary:
getCases,   getExpression
Method from com.sun.source.tree.SwitchTree Detail:
 public List<CaseTree> getCases()
 public ExpressionTree getExpression()