-
Bug
-
Resolution: Duplicate
-
P4
-
9
-
None
-
generic
-
generic
The next code generate a javadoc warning, is it correct?
{code:title=javadoc.java}
import static javax.sound.sampled.AudioFileFormat.Type;
/**
* Test method.
*
* @see #isFileTypeSupported(Type)
*/
public class javadoc {
/**
* Test methods.
*
* @param fileType file type for which write capabilities are queried
*/
public void isFileTypeSupported(Type fileType) {
}
}
{code}
javadoc.java:8: warning - Tag @see: can't find isFileTypeSupported(Type) in javadoc
Note that doclint reports nothing in this case
jdk 9 b15 used.
{code:title=javadoc.java}
import static javax.sound.sampled.AudioFileFormat.Type;
/**
* Test method.
*
* @see #isFileTypeSupported(Type)
*/
public class javadoc {
/**
* Test methods.
*
* @param fileType file type for which write capabilities are queried
*/
public void isFileTypeSupported(Type fileType) {
}
}
{code}
javadoc.java:8: warning - Tag @see: can't find isFileTypeSupported(Type) in javadoc
Note that doclint reports nothing in this case
jdk 9 b15 used.
- duplicates
-
JDK-8083662 javadoc mishandles generation of @see tag with references to a statically imported nested type
-
- Closed
-