org.inxar.jenesis
Interface Break

All Superinterfaces:
Codeable, Statement

public interface Break
extends Statement

Statement subinterface for the break keyword. Break can optionally goto a labeled statement.


Method Summary
 java.lang.String getGoto()
          Gets the target for this break statement.
 void setGoto(java.lang.String ident)
          Sets the target for this break 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 break statement.

getGoto

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