- Create a file
package-info.java
in your package to document
- Add the package descriptor
- Add a comment (/** ...*/) before the package declaration
The following link provides more information: http://docs.oracle.com/javase/specs/jls/se5.0/html/packages.html
It is recommended that
package-info.java, if it is present,
take the place of package.html for
javadoc and other similar
documentation generation systems
Package wide annotations will also be declared at package-info.java
Greetz,
GHad