org.codehaus.groovy.ast.stmt
Class CatchStatement

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

public class CatchStatement
extends Statement

Represents a catch (Exception var) { } statement

Version:
$Revision: 1.1 $
Author:
James Strachan

Field Summary
 
Fields inherited from class org.codehaus.groovy.ast.ASTNode
EMPTY_STRING_ARRAY
 
Constructor Summary
CatchStatement(String exceptionType, String variable, org.codehaus.groovy.ast.stmt.Statement code)
           
 
Method Summary
 org.codehaus.groovy.ast.stmt.Statement getCode()
           
 String getExceptionType()
           
 String getVariable()
           
 void visit(org.codehaus.groovy.ast.GroovyCodeVisitor visitor)
           
 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
getColumnNumber, getLineNumber, getText, setColumnNumber, setCSTNode, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CatchStatement

public CatchStatement(String exceptionType,
                      String variable,
                      org.codehaus.groovy.ast.stmt.Statement code)
Method Detail

visit

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

getCode

public org.codehaus.groovy.ast.stmt.Statement getCode()

getExceptionType

public String getExceptionType()

getVariable

public String getVariable()


Copyright © 2003 The Codehaus. All Rights Reserved.