我开始为这样的方法编写 javadoc:
/**
* This is my method's title
* I DON'T want this line to be shown as title in the resumed method espec
* Any lines after this are not shown. though ..
*<pre>
*
* {@code
* for (int i = 0; i < arr.length; i++) {
* Object object = arr[i];
}
* }
* </pre>
*
*
*
* @param event Evento que por defecto se recibe en un Nodo, en este caso corresponde al click sobre <code>{@link #button1}</code>
*/
@FXML private void modificarLabel(ActionEvent event) {
在生成的 index.html 中显示了这一点:
modificarLabel(javafx.event.ActionEvent event)
Método para modificar el valor de un Label 我不希望此行在恢复方法 espec 中显示为标题
如何设置某个或第一行显示为方法的标题描述?另外,我怎样才能放弃显示类的整个包层次结构?