oracle.jdeveloper.jot
Interface JotContinue
- All Superinterfaces:
- JotBlockElement, JotElement, JotStatement
- public interface JotContinue
- extends JotStatement
A JotContinue
represents a continue
statement.
A continue statement can have an optional target label. The target label
indicates which labeled statement should be the target of the continue
statement.
- Since:
- 5.0
- See Also:
- "Section 14.15 of the Java Language Specification"
Fields inherited from interface oracle.jdeveloper.jot.JotStatement |
BLOCK_STATEMENT, BREAK_STATEMENT, CASE_CLAUSE, CONTINUE_STATEMENT, DO_STATEMENT, ELSE_CLAUSE, EMPTY_STATEMENT, EXPRESSION_STATEMENT, FOR_STATEMENT, IF_STATEMENT, RETURN_STATEMENT, SWITCH_STATEMENT, SYNCHRONIZED_STATEMENT, THROW_STATEMENT, TRY_STATEMENT, WHILE_STATEMENT |
Method Summary |
java.lang.String |
getContinueLabel()
Retrieves the target label associated with this continue statement. |
void |
setContinueLabel(java.lang.String id)
Sets the target label associated with this continue statement. |
Methods inherited from interface oracle.jdeveloper.jot.JotStatement |
addLabel, getAsBlock, getAsBreak, getAsCase, getAsContinue, getAsDo, getAsExpressionStatement, getAsFor, getAsIf, getAsReturn, getAsSwitch, getAsSynchronized, getAsThrow, getAsTry, getAsWhile, getLabels, getStatementText, getStatementType, removeLabel |
getContinueLabel
public java.lang.String getContinueLabel()
- Retrieves the target label associated with this continue statement.
- Returns:
- the target label of this continue statement, or
null
if this continue statement does not have a target label.
setContinueLabel
public void setContinueLabel(java.lang.String id)
- Sets the target label associated with this continue statement.
Copyright ©1997, 2003, Oracle. All rights reserved.