@lombok.Getter @lombok.Setter class JavadocMultiline { private java.util.List booleans; private java.util.List booleans2; JavadocMultiline() { super(); } /** * This is a list of booleans. * * @return A list of booleans to set for this object. This is a Javadoc return that is long * enough to wrap to multiple lines. */ public @java.lang.SuppressWarnings("all") java.util.List getBooleans() { return this.booleans; } /** * This is a list of booleans. */ public @java.lang.SuppressWarnings("all") java.util.List getBooleans2() { return this.booleans2; } /** * This is a list of booleans. * * @param booleans A list of booleans to set for this object. This is a Javadoc param that is * long enough to wrap to multiple lines. */ public @java.lang.SuppressWarnings("all") void setBooleans(final java.util.List booleans) { this.booleans = booleans; } /** * This is a list of booleans. * * @param booleans A list of booleans to set for this object. This is a Javadoc param that is * long enough to wrap to multiple lines. */ public @java.lang.SuppressWarnings("all") void setBooleans2(final java.util.List booleans2) { this.booleans2 = booleans2; } }