From 20c0777806e419e53d4635552b6809dcb9fb7c91 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 16 Apr 2008 06:02:46 +0000 Subject: [PATCH] Compiler warnings. --- .../parser/org/eclipse/cdt/core/dom/ast/IScope.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java index 16211b07baa..76ed90b9e67 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java @@ -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;