1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 21:05:37 +02:00

Compiler warnings.

This commit is contained in:
Sergey Prigogin 2008-04-16 06:02:46 +00:00
parent 4698f4d97f
commit 20c0777806

View file

@ -15,16 +15,14 @@ package org.eclipse.cdt.core.dom.ast;
import org.eclipse.cdt.core.dom.IName; import org.eclipse.cdt.core.dom.IName;
import org.eclipse.cdt.core.index.IIndexFileSet; import org.eclipse.cdt.core.index.IIndexFileSet;
/** /**
*
* @author Doug Schaefer * @author Doug Schaefer
*/ */
public interface IScope { public interface IScope {
/** /**
* Get the IName for this scope, may be null * Get the IName for this scope, may be null
* @return * @return The name of this scope.
* @throws DOMException * @throws DOMException
*/ */
public IName getScopeName() throws DOMException; public IName getScopeName() throws DOMException;
@ -33,7 +31,7 @@ public interface IScope {
* Scopes are arranged hierarchically. Lookups will generally * Scopes are arranged hierarchically. Lookups will generally
* flow upward to find resolution. * flow upward to find resolution.
* *
* @return * @return The parent scope.
*/ */
public IScope getParent() throws DOMException; public IScope getParent() throws DOMException;
@ -43,8 +41,8 @@ public interface IScope {
* lookup. Constructors are not considered during this lookup and won't be returned. * lookup. Constructors are not considered during this lookup and won't be returned.
* No attempt is made to resolve potential ambiguities or perform access checking. * No attempt is made to resolve potential ambiguities or perform access checking.
* *
* @param searchString * @param name
* @return List of IBinding * @return An array of bindings.
*/ */
public IBinding[] find(String name) throws DOMException; public IBinding[] find(String name) throws DOMException;