Team,
How would I reference in javadoc (e.g. @see) a method that uses Class<T>
as an argument (without dropping argument all together)?
"<T>" causes the following 3 warnings:
[javadoc] ... warning - Tag @see:illegal character: "60" in Foo#bar(Class<t>)"
[javadoc] ... warning - Tag @see:illegal character: "62" in Foo#bar(Class<t>)"
[javadoc] ... warning - Tag @see: can't find bar(Class<t>) in Foo
I tried "<T>" but got even more warnings :(.
Please help.
thanks,
-marina