I use javadoc to document my classes and methods. I would like to add some overview information to my packages, too. I like how Eclipse creates a stub of a matching Doc Comment for each class or method once I type /**<Enter>. Does Eclipse have an easy way to generate a package.html file, too?
|
|
|||||
|
|
There is no template or wizard to easily create a package.html file. As mmyers said in his comment, since There is an opened Bug (#86168) for demanding a wizard for the creation of The reflections on that topic are on since... 2005! The problem is that any solution should
be implemented in a way that it also helps with The current workaround is to create a
Note (in response to Strawberry's comment):
both wish a preview of the package overview in package-info.java in the Javadoc view. So far, no patch has been proposed/implemented. |
|||||||||||||
|
|
The JAutodoc plugin does a great job of this, as well as all your other documentation needs. Install and configure the plugin and right click the package and click JAutodoc > Add Package Javadoc There are configurations and templates available for the This plugin also does a great job of standardizing all your Javadoc needs, with a great deal of customization. |
|||
|
|
|
In eclipse Since package-info.java isn't a valid identifier for a class it cannot be created as a class in Eclipse. I found that when you create a new package there is a check box to check if you want a package-info.java. To create a package-info.java file in an existing package:
|
|||
|
|
|
There's a plugin that seems to create package.html files. I haven't used it but someone landing here might find it useful. |
|||
|
|
