I've been looking through the javadoc documentation on Sun's site, trying to find if there's a javadoc tag which can be used to document a class or method's generic type signature.
Something like @typeparam, similar to the usual @param, but applicable to types as well as methods,e.g.
/**
* @typeparam T This describes my type parameter
*/
class MyClass<T> {
}
I suspect there is no such tag - I can find no mention of it anywhere, and the JavaSE API docs don't show any sign of it, but it seems like an odd omission. Can someone put me right?
@param <T>most of the time and only use it when it's really not clear. – Kevin Bourrillion Jan 6 '10 at 21:06@paramfor method parameters. Sun's coding standards explicitly say that@paramshould be used even if the method parameter's meaning is clear. – skaffman Jan 6 '10 at 21:11