This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 198799 - javadoc @see tag navigation doesn't work anymore
Summary: javadoc @see tag navigation doesn't work anymore
Status: RESOLVED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.0
Hardware: PC Linux
: P3 normal (vote)
Assignee: Jan Becicka
URL:
Keywords: REGRESSION, USABILITY
Depends on:
Blocks:
 
Reported: 2011-05-23 08:58 UTC by hupfdule
Modified: 2011-05-25 10:54 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description hupfdule 2011-05-23 08:58:47 UTC
Assume the following interface and implementation:

public interface TheInterface{
    /**
     * This method does nothing
     * @param arg1 the argument
     */
    public void myMethod(String arg1, Long arg2);
}

public class TheImpl implements TheInterface{
    /**
     * @see TheInterface#myMethod(java.lang.String)
     */
    public void myMethod(final String arg1){        
    }
}

Up to netbeans 6.9 it was possible to navigate to the interface method by ctrl-clicking on the "myMethod" in the @see tag in the javadoc of the implementation.

Since netbeans 7.0 this only leaves a "Cannot perform Go to Declaration here" message in the status bar.
Comment 1 Jan Becicka 2011-05-23 11:55:33 UTC
Regression probably caused by issue 187435
Comment 2 Jan Becicka 2011-05-23 15:48:28 UTC
Changeset: http://hg.netbeans.org/jet-main/rev/2dd6b15e2054
Author:    Jan Becicka <jbecicka@netbeans.org>
Date:      2011-05-23 17:43
Message:   
Issue #198799 - javadoc @see tag navigation doesn't work anymore
Comment 3 Quality Engineering 2011-05-25 10:54:59 UTC
Integrated into 'main-golden', will be available in build *201105250400* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/2dd6b15e2054
User: Jan Becicka <jbecicka@netbeans.org>
Log: Issue #198799 - javadoc @see tag navigation doesn't work anymore