aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/JavadocMultiline.java
blob: cc8b1148c8effe27eac73b60d65708bb863e353b (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
41
42
43
44
45
46
47
48
49
50
51
class JavadocMultiline {
    /**
     * This is a list of booleans.
     */
    private java.util.List<Boolean> booleans;
    /**
     * This is a list of booleans.
     */
    private java.util.List<Boolean> 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<Boolean> getBooleans() {
        return this.booleans;
    }

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