org.teatrove.tea.parsetree
Class ContinueStatement
java.lang.Object
org.teatrove.tea.parsetree.Node
org.teatrove.tea.parsetree.Statement
org.teatrove.tea.parsetree.ContinueStatement
- All Implemented Interfaces:
- Serializable, Cloneable
public class ContinueStatement
- extends Statement
- Author:
- Guy A. Molinari
- See Also:
- Serialized Form
|
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. |
ContinueStatement
public ContinueStatement(SourceInfo info)
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.