Package org.codehaus.groovy.ast.stmt

AST nodes for Groovy statements

See:
          Description

Class Summary
AssertStatement Represents an assert statement such as assert i != 0 : "should never be zero";
BlockStatement A list of statements
BreakStatement Represents a break statement in a switch or loop statement
CaseStatement Represents a case statement in a switch statement
CatchStatement Represents a catch (Exception var) { } statement
ContinueStatement Represents a continue statement in a loop statement
DoWhileStatement Represents a do { ...
EmptyStatement Represents an empty statement
ExpressionStatement A simple statement such as a method call where the return value is ignored
ForStatement Represents a standard for loop in Groovy
IfStatement Represents a do { ...
ReturnStatement A return statement
Statement Base class for any statement
SwitchStatement Represents a switch (object) { case value: ...
SynchronizedStatement Represents a synchronized statement
ThrowStatement Represents a throw statement
TryCatchStatement Represents a try { ...
WhileStatement Represents a while (condition) { ...
 

Package org.codehaus.groovy.ast.stmt Description

AST nodes for Groovy statements



Copyright © 2003-2008 The Codehaus. All Rights Reserved.