I just started with developing plug-ins for Eclipse but whenever I create one of the sample projects there is no JavaDoc for the methods that are used in the generated code.
I'm using the HelloWorld example and in there there's for example this generated code:
public void run(IAction action) {
MessageDialog.openInformation(
window.getShell(),
"Miau",
"Hello, Eclipse world");
}
However the openInformation()
method does not have any JavaDoc attached neither does MeesageDialog
or any other class/method/interface used in the generated example.
Is there a way to add JavaDoc to those methods/classes/etc?