mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Compiler warnings.
This commit is contained in:
parent
4698f4d97f
commit
20c0777806
1 changed files with 4 additions and 6 deletions
|
@ -15,16 +15,14 @@ package org.eclipse.cdt.core.dom.ast;
|
|||
import org.eclipse.cdt.core.dom.IName;
|
||||
import org.eclipse.cdt.core.index.IIndexFileSet;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Doug Schaefer
|
||||
*/
|
||||
public interface IScope {
|
||||
|
||||
/**
|
||||
* Get the IName for this scope, may be null
|
||||
* @return
|
||||
* @return The name of this scope.
|
||||
* @throws DOMException
|
||||
*/
|
||||
public IName getScopeName() throws DOMException;
|
||||
|
@ -33,7 +31,7 @@ public interface IScope {
|
|||
* Scopes are arranged hierarchically. Lookups will generally
|
||||
* flow upward to find resolution.
|
||||
*
|
||||
* @return
|
||||
* @return The parent scope.
|
||||
*/
|
||||
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.
|
||||
* No attempt is made to resolve potential ambiguities or perform access checking.
|
||||
*
|
||||
* @param searchString
|
||||
* @return List of IBinding
|
||||
* @param name
|
||||
* @return An array of bindings.
|
||||
*/
|
||||
public IBinding[] find(String name) throws DOMException;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue