/******************************************************************************* * Copyright (c) 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org.eclipse.php.core.compiler.ast.nodes; import java.util.Collections; import java.util.List; import org.eclipse.dltk.ast.ASTVisitor; import org.eclipse.dltk.ast.references.TypeReference; import org.eclipse.dltk.ast.references.VariableReference; import org.eclipse.dltk.ast.statements.Block; import org.eclipse.dltk.ast.statements.Statement; import org.eclipse.dltk.utils.CorePrinter; import org.eclipse.php.internal.core.compiler.ast.visitor.ASTPrintVisitor; /** * Represents a catch clause (as part of a try statement) * * <pre> * e.g. * * <pre> * catch (ClassName $e) { }, * */ public class CatchClause extends Statement { private final List<TypeReference> classNames; private final VariableReference variable; private final Block statement; public CatchClause(int start, int end, TypeReference className, VariableReference variable, Block statement) { super(start, end); assert className != null && variable != null && statement != null; this.classNames = Collections.singletonList(className); this.variable = variable; this.statement = statement; } public CatchClause(int start, int end, List<TypeReference> classNames, VariableReference variable, Block statement) { super(start, end); assert classNames != null && !classNames.isEmpty() && variable != null && statement != null; this.classNames = classNames; this.variable = variable; this.statement = statement; } public void traverse(ASTVisitor visitor) throws Exception { final boolean visit = visitor.visit(this); if (visit) { for (TypeReference typeReference : classNames) { typeReference.traverse(visitor); } variable.traverse(visitor); statement.traverse(visitor); } visitor.endvisit(this); } public int getKind() { return ASTNodeKinds.CATCH_CLAUSE; } public List<TypeReference> getClassNames() { return classNames; } public Block getStatement() { return statement; } public VariableReference getVariable() { return variable; } /** * We don't print anything - we use {@link ASTPrintVisitor} instead */ public final void printNode(CorePrinter output) { } public String toString() { return ASTPrintVisitor.toXMLString(this); } }