Files
openide/java/java-tests/testData/refactoring/changeSignature/JavadocGenericsLink_after.java
T
Yaroslav Lepenkin 9f82306ea5 Added possibility not to add FQN in javadocs if class was imported (IDEA-121121 ) [CR-IC-6907]
Now three options is available: use FQN always, never, or when not imported. Last is used by default.
Converted and moved boolean legacy setting from CommonCodeStyle settings into JavaCodeStyleSettings.
2014-12-02 12:14:01 +02:00

11 lines
153 B
Java

import java.util.List;
class A {
void method(List<String> y, boolean a){}
/**
* {@link #method(List, boolean)}
*/
void bar() {}
}