Extension SDK

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"

Field Summary
 
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
 
Fields inherited from interface oracle.jdeveloper.jot.JotBlockElement
LOCAL_CLASS_TYPE, STATEMENT_TYPE, VARIABLE_DECLARATION_TYPE
 
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
 
Methods inherited from interface oracle.jdeveloper.jot.JotBlockElement
getAsLocalClass, getAsStatement, getAsVariableDeclaration, getElementType
 
Methods inherited from interface oracle.jdeveloper.jot.JotElement
getElementName, getEndOffset, getID, getJotWorkArea, getParent, getStartOffset, isExistent, isReadOnly, isStructureKnown, setParent
 

Method Detail

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.


Extension SDK

 

Copyright ©1997, 2003, Oracle. All rights reserved.