我为大学作业创建了一个容器类,我必须为它编写Javadoc规范。该类应该是一个Set,并将集合元素保存在Array
中,并具有公共集合操作行联合,交集等方法。
需要使用这些标记:{{1 }}
我做到了这一点,这对于作业要求来说已经足够了:
@author, @elements, @stucture, @domain, @constructor @precondition, @postcondition
但是我没有得到我应该放在/**ADT for the Set Class
*
* @author my_name
* @elements Objects of type a_type
* @structure linear
* @domain what_to_put_here?
* @constructor
* Set();
* <dl>
* <dt><b>PRE-condition</b><dd>
* something
* <dt><b>POST-condition</b><dd>
* something
* </dl>
*/
标签上的内容。有什么想法吗?
提前致谢。