From f74fc1c0ac42a60241445319d134fcd801f2089e Mon Sep 17 00:00:00 2001 From: John Camelon Date: Thu, 28 Apr 2005 13:45:05 +0000 Subject: [PATCH] Add Declaration Ambiguity interface. --- .../dom/parser/IASTAmbiguousDeclaration.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/IASTAmbiguousDeclaration.java diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/IASTAmbiguousDeclaration.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/IASTAmbiguousDeclaration.java new file mode 100644 index 00000000000..02e580af145 --- /dev/null +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/IASTAmbiguousDeclaration.java @@ -0,0 +1,22 @@ +/********************************************************************** + * Copyright (c) 2004 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Common Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * IBM - Initial API and implementation + **********************************************************************/ +package org.eclipse.cdt.internal.core.dom.parser; + +import org.eclipse.cdt.core.dom.ast.ASTNodeProperty; +import org.eclipse.cdt.core.dom.ast.IASTDeclaration; + +public interface IASTAmbiguousDeclaration extends IASTDeclaration { + + public static final ASTNodeProperty SUBDECLARATION = new ASTNodeProperty( "IASTAmbiguousDeclaration.SUBDECLARATION"); //$NON-NLS-1$ + public void addDeclaration( IASTDeclaration d ); + public IASTDeclaration [] getDeclarations(); + +}