/******************************************************************************* * Copyright (c) 2005, 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.ast.gnu.c; import org.eclipse.cdt.core.dom.ast.ASTNodeProperty; import org.eclipse.cdt.core.dom.ast.IASTExpression; import org.eclipse.cdt.core.dom.ast.IASTSimpleDeclSpecifier; import org.eclipse.cdt.core.dom.ast.c.ICASTSimpleDeclSpecifier; /** * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. * @deprecated Everything can be expressed as {@link ICASTSimpleDeclSpecifier}. */ @Deprecated public interface IGCCASTSimpleDeclSpecifier extends ICASTSimpleDeclSpecifier { /** * @deprecated Replaced by {@link IASTSimpleDeclSpecifier#t_typeof}. */ @Deprecated public static final int t_typeof = ICASTSimpleDeclSpecifier.t_last + 1; /** * @deprecated All constants must be defined in {@link IASTSimpleDeclSpecifier}. */ @Deprecated public static final int t_last = t_typeof; /** * @deprecated Replaced by {@link IASTSimpleDeclSpecifier#DECLTYPE_EXPRESSION}. */ @Deprecated public static final ASTNodeProperty TYPEOF_EXPRESSION = new ASTNodeProperty( "IGCCASTSimpleDeclSpecifier.TYPEOF_EXPRESSION - typeof() Expression"); //$NON-NLS-1$ /** * @deprecated Replaced by {@link IASTSimpleDeclSpecifier#setDeclTypeExpression(IASTExpression)}. */ @Deprecated public void setTypeofExpression(IASTExpression typeofExpression); /** * @deprecated Replaced by {@link IASTSimpleDeclSpecifier#getDeclTypeExpression()}. */ @Deprecated public IASTExpression getTypeofExpression(); /** * @since 5.1 */ public IGCCASTSimpleDeclSpecifier copy(); /** * @since 5.3 */ public IGCCASTSimpleDeclSpecifier copy(CopyStyle style); }