-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
b44
-
generic, sparc
-
generic, solaris_9
I'm trying to reference a varargs method using @link tags in javadoc and
things aren't behaving as I would expect. Here's a tiny example:
FILE: p/Ref.java
package p;
public class Ref {
/**
* m javadoc.
*/
public void m(Object ... o) {}
}
FILE: p/Test.java
package p;
/**
* {@link p.Ref#m(Object[])}
*/
public class Test {}
In Ref.html, javadoc, the method m, has the following name:
<A NAME="m(java.lang.Object...)"><!-- --></A><H3>
m</H3>
<PRE>
public void <B>m</B>(java.lang.Object... o)</PRE>
<DL>
<DD>m javadoc.
Based on the above and the syntax for varargs, I would have guessed that the
@link tag should look something like:
@link p.Ref#m(Object...)
This does not work. It seems that for javadoc to succeed, I need to use:
@link p.Ref#m(Object[])
-- iag@sfbay 2004-02-02
things aren't behaving as I would expect. Here's a tiny example:
FILE: p/Ref.java
package p;
public class Ref {
/**
* m javadoc.
*/
public void m(Object ... o) {}
}
FILE: p/Test.java
package p;
/**
* {@link p.Ref#m(Object[])}
*/
public class Test {}
In Ref.html, javadoc, the method m, has the following name:
<A NAME="m(java.lang.Object...)"><!-- --></A><H3>
m</H3>
<PRE>
public void <B>m</B>(java.lang.Object... o)</PRE>
<DL>
<DD>m javadoc.
Based on the above and the syntax for varargs, I would have guessed that the
@link tag should look something like:
@link p.Ref#m(Object...)
This does not work. It seems that for javadoc to succeed, I need to use:
@link p.Ref#m(Object[])
-- iag@sfbay 2004-02-02
- duplicates
-
JDK-5008048 Trouble with @see/@link tag for a vararg method.
-
- Closed
-