org.inxar.jenesis
Interface Continue

All Superinterfaces:
Codeable, Statement

public interface Continue
extends Statement

Statement subinterface for the continue keyword. Continue can optionally goto a labeled statement.


Method Summary
 java.lang.String getGoto()
          Gets the target for this continue statement.
 void setGoto(java.lang.String ident)
          Sets the target for this continue statement.
 
Methods inherited from interface org.inxar.jenesis.Statement
comment, getLabel, setLabel
 
Methods inherited from interface org.inxar.jenesis.Codeable
getComment, setComment, toCode, vm
 

Method Detail

setGoto

public void setGoto(java.lang.String ident)
Sets the target for this continue statement.

getGoto

public java.lang.String getGoto()
Gets the target for this continue statement.