You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm curious if you have any desire to support Markdown-style Javadoc comments, as per https://openjdk.org/jeps/467.
If not, I'm trying to figure out what the best way to achieve this is, using the existing API. I see anything added as a javadoc entry in MethodSpec gets emitted surrounded by /** */ via CodeWriter - so I don't think there's a point at which I could add my own stuff before the method definition.
A possible alternative is doing some post-processing of the file myself, but trying to avoid that if I can.