Eclipseのメソッドの上に/**と入力してEnterキーを押すと、Javadocが生成されます。次に例を示します。
/**
* Finds a World using a String, greets the World,
* and then returns a reference to the World.
*
* @param world - the World to find and greet.
* @return the reference to the World.
* @throws ApocalypseException - if the World is not found.
*/
public World helloWorld(String world) throws ApocalypseException {
...
}
ただし、Javadocをメソッドに追加すると、ランダムに生成が停止することがあります。
/**
*
*/
public Universe helloUniverse(String universe) throws BigBangException {
...
}
これはクラスに固有のものではありません。クラスに5つほどのメソッドを生成すると、生成が停止します。Workspaceはクラスファイルを読み取れないと思ったので、それらを削除して再コンパイルしましたが、これで問題は解決しませんでした。また、Eclipseを再起動しようとしましたが、それも機能しませんでした。