/******************************************************************************* * Copyright © 2011, 2013 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 * *******************************************************************************/ package org.eclipse.edt.compiler.core.ast; import java.util.List; /** * WhenClause AST node type. * * @author Albert Ho * @author David Murray */ public class WhenClause extends Node { private List expr_plus; // List of Expressions private List stmts; // List of Nodes public WhenClause(List expr_plus, List stmts, int startOffset, int endOffset) { super(startOffset, endOffset); this.expr_plus = setParent(expr_plus); this.stmts = setParent(stmts); } public List<Expression> getExpr_plus() { return expr_plus; } public List<Node> getStmts() { return stmts; } public void accept(IASTVisitor visitor) { boolean visitChildren = visitor.visit(this); if(visitChildren) { acceptChildren(visitor, expr_plus); acceptChildren(visitor, stmts); } visitor.endVisit(this); } protected Object clone() throws CloneNotSupportedException { return new WhenClause(cloneList(expr_plus), cloneList(stmts), getOffset(), getOffset() + getLength()); } }