It seems Eclipse still doesn't generate full Javadoc templates for records — or am I missing something?
I'm using Eclipse 2025-06 with Java 21.
When I type /** above a record, Eclipse only completes an empty Javadoc block like this:
/**
*
*/
public record SomeRecord(int a, String b, LocalDateTime c) {}
But I would expect something like:
/**
* @param a
* @param b
* @param c
*/
public record SomeRecord(int a, String b, LocalDateTime c) {}
Is there a setting I missed? Or is this still a known limitation in Eclipse?
asked Jul 23 at 6:41
Martin Fernau
8071 gold badge7 silver badges20 bronze badges
lang-java
@params or whether you should create a Javadoc comment on each parameter.