1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 09:55:29 +02:00

Fix java-doc.

This commit is contained in:
Markus Schorn 2008-04-21 13:50:38 +00:00
parent 835e96be68
commit 7481b864e5

View file

@ -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);