com.borland.jbuilder.jot
Interface JotWhile

All Superinterfaces:
JotMarker, JotSourceElement, JotStatement

public interface JotWhile
extends JotStatement

This interface represents a Java while statement. See section 14.10 in the Java Language Specificaton for more information.


Method Summary
 JotCodeBlock getCodeBlock()
          Returns the body of the while statement.
 JotExpression getCondition()
          Returns the conditional expression.
 
Methods inherited from interface com.borland.jbuilder.jot.JotStatement
getStatements
 
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

getCondition

public JotExpression getCondition()
Returns the conditional expression.

getCodeBlock

public JotCodeBlock getCodeBlock()
Returns the body of the while statement.
Specified by:
getCodeBlock in interface JotStatement