Bug 46760

Summary: Search for reference reports exact matches as inexact
Product: [Eclipse Project] JDT Reporter: Dirk Baeumer <dirk_baeumer>
Component: CoreAssignee: Frederic Fusier <frederic_fusier>
Status: RESOLVED INVALID QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.0 M6   
Hardware: PC   
OS: Windows XP   
Whiteboard:

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