/******************************************************************************* * Copyright (c) 2004, 2011 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: * John Camelon (IBM) - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.ast.cpp; import org.eclipse.cdt.core.dom.ast.ASTNodeProperty; import org.eclipse.cdt.core.dom.ast.IASTDeclaration; import org.eclipse.cdt.core.dom.ast.IASTWhileStatement; import org.eclipse.cdt.core.dom.ast.IScope; /** * This interface accommodates C++ allows for broader while loop syntax. * * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. */ public interface ICPPASTWhileStatement extends IASTWhileStatement { /** * In C++ conditions can be declarations w/side effects. */ public static final ASTNodeProperty CONDITIONDECLARATION = new ASTNodeProperty( "ICPPASTWhileStatement.CONDITIONDECLARATION - C++ condition/declaration"); //$NON-NLS-1$ /** * Get the condition declaration. * * @return <code>IASTDeclaration</code> */ public IASTDeclaration getConditionDeclaration(); /** * Set the condition declaration. * * @param declaration * <code>IASTDeclaration</code> */ public void setConditionDeclaration(IASTDeclaration declaration); /** * Get the <code>IScope</code> represented by this while. * * @return <code>IScope</code> */ public IScope getScope(); /** * @since 5.1 */ public ICPPASTWhileStatement copy(); /** * @since 5.3 */ public ICPPASTWhileStatement copy(CopyStyle style); }