org.teatrove.tea.parsetree
Class ContinueStatement

java.lang.Object
  extended by org.teatrove.tea.parsetree.Node
      extended by org.teatrove.tea.parsetree.Statement
          extended by org.teatrove.tea.parsetree.ContinueStatement
All Implemented Interfaces:
Serializable, Cloneable

public class ContinueStatement
extends Statement

Author:
Guy A. Molinari
See Also:
Serialized Form

Constructor Summary
ContinueStatement(SourceInfo info)
           
 
Method Summary
 Object accept(NodeVisitor visitor)
          Every subclass of Node must override this method with the following: return visitor.visit(this).
 Object clone()
          Returns a clone of this Node and all its children.
 boolean isBreak()
          Returns true if Statement 'breaks' during its execution.
 
Methods inherited from class org.teatrove.tea.parsetree.Statement
isReturn
 
Methods inherited from class org.teatrove.tea.parsetree.Node
getSourceInfo, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ContinueStatement

public ContinueStatement(SourceInfo info)
Method Detail

accept

public Object accept(NodeVisitor visitor)
Description copied from class: Node
Every subclass of Node must override this method with the following: return visitor.visit(this).

Overrides:
accept in class Statement
Parameters:
visitor - A visitor of this Node
Returns:
Node The Node returned by the visitor
See Also:
NodeVisitor

isBreak

public boolean isBreak()
Description copied from class: Statement
Returns true if Statement 'breaks' during its execution.

Overrides:
isBreak in class Statement

clone

public Object clone()
Description copied from class: Node
Returns a clone of this Node and all its children. Immutable child objects are not necessarily cloned

Overrides:
clone in class Node


Copyright © 1997-2012 TeaTrove.org. All Rights Reserved.