0

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?

3

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.