-
Enhancement
-
Resolution: Won't Fix
-
P4
-
None
-
1.2.0, 1.3.0
-
x86, sparc
-
solaris_2.5.1, windows_nt
Consider the following file:
/** @see #foo
*/
public class t {
/** foo */
private void foo() { }
}
If I run javadoc -private, then javadoc is happy. If I run javadoc normally,
javadoc complains about not being able to find foo(). This makes it harder to
use javadoc for documenting the code to people who need the -private stuff. I
should only be warned if foo does not exist at all. If it does exist, but is
inaccesible at my current javadoc level (-private, -package, etc.) the @see
should just be silently ignored.
/** @see #foo
*/
public class t {
/** foo */
private void foo() { }
}
If I run javadoc -private, then javadoc is happy. If I run javadoc normally,
javadoc complains about not being able to find foo(). This makes it harder to
use javadoc for documenting the code to people who need the -private stuff. I
should only be warned if foo does not exist at all. If it does exist, but is
inaccesible at my current javadoc level (-private, -package, etc.) the @see
should just be silently ignored.
- duplicates
-
JDK-4361055 javadoc: Fails to resolve @see and @link references to package-private methods
-
- Closed
-
- relates to
-
JDK-8073838 Javadoc 8 misses warning for unsupported @value reference to private member
-
- Open
-