/******************************************************************************* * Copyright (c) 2004, 2008 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 - Initial API and implementation * Markus Schorn (Wind River Systems) *******************************************************************************/ package org.eclipse.cdt.core.dom.ast; /** * @deprecated, use IASTMacroExpansionLocation instead */ @Deprecated public interface IASTMacroExpansion extends IASTNodeLocation { /** * The macro definition used for the expansion * */ public IASTPreprocessorMacroDefinition getMacroDefinition(); /** * The macro reference for the explicit macro expansion containing this expansion. * @since 5.0 */ public IASTName getMacroReference(); /** * Returns an offset within the macro-expansion. The offset can be used to compare * nodes within the same macro-expansion. However, it does not serve as an offset * into a file. */ public int getNodeOffset(); /** * Returns the length of this location. The length can be used to compare this location * with others from within the same macro-expansion. However, the length does not neccessarily * relate to a length in terms of characters. */ public int getNodeLength(); /** * The source locations for for the macro expansion. These are the locations * where the expansion in question occurred and was replaced. * * @deprecated use {@link IASTNodeLocation#asFileLocation()}. */ @Deprecated public IASTNodeLocation[] getExpansionLocations(); }