Bug 290249 - [assist][javadoc] @see should put similiar methods/classes closer to the top
Summary: [assist][javadoc] @see should put similiar methods/classes closer to the top
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.5   Edit
Hardware: PC Windows Vista
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-09-23 08:29 EDT by Tomasz Bartczak CLA
Modified: 2009-09-23 08:29 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tomasz Bartczak CLA 2009-09-23 08:29:45 EDT
User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.14) Gecko/2009082707 Firefox/3.0.14 (.NET CLR 3.5.30729)
Build Identifier: M20090211-1700

For example having an 'facade' pattern, where we would have

class A {
/**
* a full javadoc
*/
public void doA() {..}

// other methods

}

and 
class B {

/**
* @see A#
*/
public void doA() {..}
}

I would expect that @see A# will assist me with doA as the first method not others. Because I am making a @see for a method named (doA)

Reproducible: Always