-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b61
-
generic
-
generic
Examine the shell transcript below:
------------------------
$ cat Toy.java
public interface Toy {
void f(Object x);
<T> void f(T[] x);
}
$ javadoc -quiet Toy.java
$ grep '<A NAME=.*f(' Toy.html
<A NAME="f(java.lang.Object)"><!-- --></A><H3>
<A NAME="f(java.lang.Object)"><!-- --></A><A NAME="f(T[])"><!-- --></A><H3>
------------------------
The two methods get the same signature in the generated html, even though
their "true" erased types, as known by javac, are different.
The erased type for T[] should be Object[], not Object.
###@###.### 2005-06-25 01:14:37 GMT
------------------------
$ cat Toy.java
public interface Toy {
void f(Object x);
<T> void f(T[] x);
}
$ javadoc -quiet Toy.java
$ grep '<A NAME=.*f(' Toy.html
<A NAME="f(java.lang.Object)"><!-- --></A><H3>
<A NAME="f(java.lang.Object)"><!-- --></A><A NAME="f(T[])"><!-- --></A><H3>
------------------------
The two methods get the same signature in the generated html, even though
their "true" erased types, as known by javac, are different.
The erased type for T[] should be Object[], not Object.
###@###.### 2005-06-25 01:14:37 GMT