Web Site

org.codehaus.janino
Class Java.ContinueStatement

java.lang.Object
  extended by org.codehaus.janino.Java.Located
      extended by org.codehaus.janino.Java.Statement
          extended by org.codehaus.janino.Java.ContinueStatement
All Implemented Interfaces:
Java.BlockStatement, Java.Locatable, Java.Scope
Enclosing class:
Java

public static final class Java.ContinueStatement
extends Java.Statement

Representation of the JavaTM "continue" statement (JLS 14.15).


Field Summary
 java.lang.String optionalLabel
           
 
Constructor Summary
Java.ContinueStatement(Location location, java.lang.String optionalLabel)
           
 
Method Summary
 void accept(Visitor.BlockStatementVisitor visitor)
           
 
Methods inherited from class org.codehaus.janino.Java.Statement
getEnclosingScope, setEnclosingScope
 
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwParseException
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwParseException
 

Field Detail

optionalLabel

public final java.lang.String optionalLabel
Constructor Detail

Java.ContinueStatement

public Java.ContinueStatement(Location location,
                              java.lang.String optionalLabel)
Method Detail

accept

public final void accept(Visitor.BlockStatementVisitor visitor)

Web Site