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
It should be done just like this:
/** * @param <T> This describes my type parameter */ class MyClass<T>{ }
Source
Yes. Just use the @param tag, and include angle brackets around the type parameter.
Like this:
/** * @param <T> This describes my type parameter */