Back
In the Java APIs I can see Javadoc comments for packages.
How/where do I place Javadoc comments to document a package?
As of 1.5 you can define a package-info.java file and provide a standard javadoc style comment for a package:
com/foo/package-info.java:/** * com.foo is a group of bar utils for operating on foo things. */package com.foo;//rest of the file is empty
com/foo/package-info.java:
/**
* com.foo is a group of bar utils for operating on foo things.
*/
package com.foo;
//rest of the file is empty
Language specification for packages
31k questions
32.8k answers
501 comments
693 users