class JavadocMultiline { /** * This is a list of booleans. */ private java.util.List booleans; /** * This is a list of booleans. */ private java.util.List booleans2; /** * 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. */ @java.lang.SuppressWarnings("all") public java.util.List getBooleans() { return this.booleans; } /** * This is a list of booleans. */ @java.lang.SuppressWarnings("all") public 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. */ @java.lang.SuppressWarnings("all") public 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. */ @java.lang.SuppressWarnings("all") public void setBooleans2(final java.util.List booleans2) { this.booleans2 = booleans2; } }