org.codehaus.groovy.ast.stmt
Class BlockStatement

java.lang.Object
  |
  +--org.codehaus.groovy.ast.ASTNode
        |
        +--org.codehaus.groovy.ast.stmt.Statement
              |
              +--org.codehaus.groovy.ast.stmt.BlockStatement

public class BlockStatement
extends Statement

A list of statements

Version:
$Revision: 1.4 $
Author:
James Strachan

Field Summary
 
Fields inherited from class org.codehaus.groovy.ast.ASTNode
EMPTY_STRING_ARRAY
 
Constructor Summary
BlockStatement()
           
BlockStatement(List statements)
           
 
Method Summary
 void addStatement(org.codehaus.groovy.ast.stmt.Statement statement)
           
 void addStatements(List listOfStatements)
           
 List getStatements()
           
 String getText()
           
 boolean isEmpty()
           
 String toString()
           
 void visit(org.codehaus.groovy.ast.GroovyCodeVisitor visitor)
           
 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
getColumnNumber, getLineNumber, setColumnNumber, setCSTNode, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BlockStatement

public BlockStatement()

BlockStatement

public BlockStatement(List statements)
Method Detail

visit

public void visit(org.codehaus.groovy.ast.GroovyCodeVisitor visitor)
Overrides:
visit in class ASTNode

getStatements

public List getStatements()

addStatement

public void addStatement(org.codehaus.groovy.ast.stmt.Statement statement)

addStatements

public void addStatements(List listOfStatements)

toString

public String toString()
Overrides:
toString in class Object

getText

public String getText()
Overrides:
getText in class ASTNode

isEmpty

public boolean isEmpty()


Copyright © 2003 The Codehaus. All Rights Reserved.