How to write an API

Hi all,I would like to write my own API in the same style as the Java API Documentation (the same structure,the same style...)Can anyone tell me how to do that?
[188 byte] By [eugene1234] at [2007-9-26 3:14:45]
# 1

You mean you want to generate API documentation of your own classes in the same style as the SDK API documentation?

Write javadoc comments in your source code. A javadoc comment is a comment that starts with /** and ends with */.

Read all about javadoc here:http://java.sun.com/j2se/1.3/docs/tooldocs/javadoc/index.html

Jesper

jesper1 at 2007-6-29 11:25:22 > top of Java-index,Archived Forums,Java Programming...
# 2
javadoc: http://java.sun.com/j2se/1.3/docs/tooldocs/javadoc/index.html
jsalonen at 2007-6-29 11:25:22 > top of Java-index,Archived Forums,Java Programming...