blob: bf0589758006c6ee56c9af50ab30493a3759d9ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
@lombok.Getter @lombok.Setter class JavadocMultiline {
private java.util.List<Boolean> booleans;
private java.util.List<Boolean> 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<Boolean> getBooleans() {
return this.booleans;
}
/**
* This is a list of booleans.
*/
public @java.lang.SuppressWarnings("all") java.util.List<Boolean> 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<Boolean> 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<Boolean> booleans2) {
this.booleans2 = booleans2;
}
}
|