Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
6  
To write proper javadocs? – Timo Willemsen Jan 6 '10 at 20:33
1  
Be aware that for most classes there really is nothing interesting to say about the type parameter, because the type parameter is essentially defined by how it appears in the methods of the object. I'd skip @param <T> most of the time and only use it when it's really not clear. – Kevin Bourrillion Jan 6 '10 at 21:06
1  
I see what you're saying, but by that rationale, the same applies to the use of @param for method parameters. Sun's coding standards explicitly say that @param should be used even if the method parameter's meaning is clear. – skaffman Jan 6 '10 at 21:11
1  
In addition to that. Good API programming should be as self documenting as possible. Does that mean an api does not need a documentation? no. – Timo Willemsen Jan 7 '10 at 11:01

3 Answers

up vote 36 down vote accepted

It should be done just like this:

/**
 * @param <T> This describes my type parameter
 */
class MyClass<T>{

}

Source

share|improve this answer
Doh.... OK, that's embarrassingly obvious... it does beg the question as to why the JavaSE classes (e.g. Collection) don't use it, though. – skaffman Jan 6 '10 at 20:34
Strange this is, it's not documented in the standard documentation. – Timo Willemsen Jan 6 '10 at 20:34
4  
@skaffman A bit late of course, but it raises the question, it does not beg the question. – Thor84no Jan 15 at 16:38
show 1 more comment

Yes. Just use the @param tag, and include angle brackets around the type parameter.

Like this:

/**
 *  @param <T> This describes my type parameter
 */
share|improve this answer

I don't think this omission is odd. By virtue of being a generic type (erased at runtime), the type parameter is really not part of the api.

If you are concerned about the essence of the type itself and want to document it, perhaps you need to restrict it (e.g. MyClass <T extends MyType>)?

share|improve this answer
8  
I disagree strongly. If I'm using an API class with a type parameter, I need to know what that type parameter means. It does have to be documented. – skaffman Jan 6 '10 at 20:36
-1: There is no omission. Moreover, that type parameters are erased (simplistically speaking) at runtime is irrelevant, because javadoc is not used at runtime. – meriton Jan 6 '10 at 21:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.