Have a written class generic adapter

public abstract class CustomAdapter<T> extends BaseAdapter {....} 

Help me write java doc for it. It is necessary that the comment does not contain what is visible from the class signature.

I tried to describe in java doc that it is needed to work with any data type, but they said that it can be seen from the signature. And they add that here the comment does not reveal the purpose of the class.

A comment should answer the following questions: class assignment? Why is this class needed? Why did I create it?

Initially it was: "Generic base implementation {@link BaseAdapter}. Allows subclasses to specify the data type as the parameter {@link T}"

  • What was your original comment? - Andrew Grow
  • one
    The questions are really good. What is the class used for? Why did you create it? How do we know this? - default locale

0