com.borland.jbuilder.jot
Interface JotDefault

All Superinterfaces:
JotMarker, JotSourceElement, JotStatement

public interface JotDefault
extends JotStatement

This interface represents a default label in a switch statement. See section 14.9 in the Java Language Specification for more information.


Method Summary
 JotStatement[] getStatements()
          Returns an array containing all statements following this default label but preceding any other labels in the switch statement.
 
Methods inherited from interface com.borland.jbuilder.jot.JotStatement
getCodeBlock
 
Methods inherited from interface com.borland.jbuilder.jot.JotMarker
addUserData, getEndPosition, getStartPosition, getUserData
 
Methods inherited from interface com.borland.jbuilder.jot.JotSourceElement
getIndentLevel, getParent, getText, isModified, setModified, setText
 

Method Detail

getStatements

public JotStatement[] getStatements()
Returns an array containing all statements following this default label but preceding any other labels in the switch statement.
Specified by:
getStatements in interface JotStatement