aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/design/InputPublicImmutable.java
blob: 0a2e6e64dabdf7b509decc81aeace069723a016b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.puppycrawl.tools.checkstyle.checks.design;

import java.math.BigDecimal;
import java.util.Collection;
import java.util.List;

import com.google.common.collect.ImmutableSet;

public class InputPublicImmutable {    
    public final int someIntValue;
    public final ImmutableSet<String> includes;
    public final java.lang.String notes;
    public final BigDecimal value;
    public final List list;
    public InputPublicImmutable(Collection<String> includes,
            BigDecimal value, String notes, int someValue, List l) {
        this.includes = ImmutableSet.copyOf(includes);
        this.value = value;
        this.notes = notes;
        this.someIntValue = someValue;
        this.list = l;
    }
}