From 7481b864e5cf35f2f9f38481d659cdcdb09fa849 Mon Sep 17 00:00:00 2001 From: Markus Schorn Date: Mon, 21 Apr 2008 13:50:38 +0000 Subject: [PATCH] Fix java-doc. --- .../parser/org/eclipse/cdt/core/index/IIndex.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/index/IIndex.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/index/IIndex.java index 351e5d08708..07b47b75dc1 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/index/IIndex.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/index/IIndex.java @@ -58,7 +58,7 @@ public interface IIndex { */ final int FIND_DEFINITIONS = 0x2; /** - * Constant to search for all declarations including definitions. + * Constant to search for references. This does not include declarations or definitions. */ final int FIND_REFERENCES = 0x4; /** @@ -68,7 +68,7 @@ public interface IIndex { */ final int SEARCH_ACCROSS_LANGUAGE_BOUNDARIES= 0x8; /** - * Constant to search for references. This does not include declarations or definitions. + * Constant to search for all declarations including definitions. */ final int FIND_DECLARATIONS_DEFINITIONS = FIND_DECLARATIONS | FIND_DEFINITIONS; /** @@ -380,7 +380,6 @@ public interface IIndex { * or for IBinding objects obtained direct from the AST. * @param binding * @return an IIndexBinding for this IIndex that is equivalent to the specified binding - * @throws CoreException */ public IIndexBinding adaptBinding(IBinding binding);