Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d74f0183e808e7474e6d79951077c6d5b8585716 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*******************************************************************************
 * Copyright (c) 2002, 2004 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 Rational Software - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.parser.pst;


import java.util.Iterator;

import org.eclipse.cdt.internal.core.parser.ast.complete.ASTNode;
import org.eclipse.cdt.internal.core.parser.ast.complete.ASTSymbol;

/**
 * @author jcamelon
 *
 */
public interface ISymbolASTExtension extends ISymbolOwner
{
	public class ExtensionException extends Exception
	{
	}
	
	
	public ASTNode       getPrimaryDeclaration();
	public IExtensibleSymbol getExtensibleSymbol();
	public Iterator        getAllDefinitions();
	public void            addDefinition( ASTSymbol definition ) throws ExtensionException; 	

}

Back to the top