Hello!

By coincidence I discovered IDEAs new autocompletion ability in
see-tags. It's great, but it has a bug
Say I have three operations

/**
 * bla
 */
public void bla(String blub);

/**
 * blub
 */
public void bla(String bla, String blub);

/**
 * blablub
 */
public void blablub();

When I go to the javadoc comment of blablub(), type "@see #" and press
Ctrl-Space, I get a list of all operations and attributes of that
class. Now lets say I choose bla(String bla, String blub) from the
list. This leads to the following change

/**
 * blablub
 *
 * @see #bla
 */
public void blablub();

But it should be

/**
 * blablub
 *
 * @see #bla(String, String)
 */
public void blablub();

Otherwise javadoc can not decide to which operation this link shall
point.

And please do not generate imports for classes that are only
referenced in the javadoc comments. Add full qualified names in
javadoc comments for classes that are only referenced in javadoc
comments. As there will be different opinions about this, having it as
an option would be fine.

-- 
Greets
 Robert

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to