org.codehaus.groovy.ast.stmt
Class CatchStatement

java.lang.Object
  extended by org.codehaus.groovy.ast.ASTNode
      extended by org.codehaus.groovy.ast.stmt.Statement
          extended by org.codehaus.groovy.ast.stmt.CatchStatement

public class CatchStatement
extends Statement

Represents a catch (Exception var) { } statement

Version:
$Revision: 1.4 $
Author:
James Strachan

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

Constructor Detail

CatchStatement

public CatchStatement(ClassNode exceptionType,
                      String variable,
                      Statement code)
Method Detail

visit

public void visit(GroovyCodeVisitor visitor)
Overrides:
visit in class ASTNode

getCode

public Statement getCode()

getExceptionType

public ClassNode getExceptionType()

getVariable

public String getVariable()


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