Bug 46760 - Search for reference reports exact matches as inexact
Summary: Search for reference reports exact matches as inexact
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.0 M6   Edit
Assignee: Frederic Fusier CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-17 05:16 EST by Dirk Baeumer CLA
Modified: 2003-11-21 12:34 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dirk Baeumer CLA 2003-11-17 05:16:40 EST
N20031114

package p1;
public class R {
	
	private String field;
	
	public void foo() {
	}
}

======

package p2;
public class RefR {
	/**
	 * @see p1.R
	 * @see p1.R#field
	 *
	 */
	public void foo() {
		
	}
}

Searching for refernces to R.fiedl reports an inexact match in the Java doc 
comment of RefR. This is an exact match.
Comment 1 Frederic Fusier CLA 2003-11-21 10:48:22 EST
I'll investigate this problem as it's related to Javadoc
Comment 2 Frederic Fusier CLA 2003-11-21 12:34:13 EST
The message is correct as the reference is not visible.

If you activate the compiler options on Javadoc tags (I guess you haven't done 
it in your workspace), you'll see a warning or error (depending on the severity 
you set) on @see p1.R#field reference