Good day. I am writing comments

/** * The SQL statement to be executed. */ public static final String CREATE_TABLE = "create table " + TABLE_NAME + "(" + _ID + " integer primary key , " + NAME + " text not null " + ");"; 

it turns out alt text how to write to The SQL statement to be executed. displayed at the top of the comment, not at the bottom.

  • thanks, please make a comment with an answer so that I can bury the question. - gadfil

1 answer 1

"The SQL statement to be executed" in your case is displayed as the first line. The fact that IDEA in the tooltip first writes the full name of the class and the signature of the expression in front of your javadoc will not affect you.

That is, technically, maybe this can be implemented with the IDEA plugin, but why?