/******************************************************************************* * Copyright (c) 2007, 2009 Wind River Systems, Inc. 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: * Anton Leherbauer (Wind River Systems) - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.parser; import org.eclipse.cdt.core.parser.IToken; /** * Token types for parser extensions. * <p> * This interface is not intended to be implemented. * </p> * <p> * <strong>EXPERIMENTAL</strong>. This class or interface has been added as * part of a work in progress. There is no guarantee that this API will work or * that it will remain the same. Please do not use this API without consulting * with the CDT team. * </p> * * @since 4.0 * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. */ public interface IExtensionToken { int t__otherDeclSpecModifierFirst= IToken.FIRST_RESERVED_IExtensionToken; int t__otherDeclSpecModifierLast= IToken.FIRST_RESERVED_IExtensionToken + 10; }