aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/annotation/InputSuppressWarningsSingle.java
blob: 58fbc24bca55ebbd0f6fcffd63e08ef6e54f7a46 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.puppycrawl.tools.checkstyle.checks.annotation;

import java.lang.annotation.Documented;

@SuppressWarnings("unchecked")
public class InputSuppressWarningsSingle
{   
    @SuppressWarnings("   ")
    class Empty {
        
        @SuppressWarnings("")
        public Empty() {
            
        }
    }
    
    @SuppressWarnings("unused")
    enum Duh {
        
        @SuppressWarnings("unforgiven")
        D;
        
        public static void foo() {
            
            @SuppressWarnings("unused")
            Object o = new InputSuppressWarningsSingle() {
                
                @Override
                @SuppressWarnings("unchecked")
                public String toString() {
                    return "";
                }
            };
        }
    }
    
    @SuppressWarnings("abcun")
    @Documented
    @interface Sweet {
        int cool();
    }
    
    @Documented
    @SuppressWarnings("abcun")
    @interface MoreSweetness {
        
        @SuppressWarnings("unused")
        int cool();
    }
    
    public class Junk {
        
        @SuppressWarnings("")
        int a = 1;
        
        @SuppressWarnings("unchecked")
        @Deprecated
        int b = 1;
        void doFoo(String s, @SuppressWarnings("unchecked")String y) {
            
        }
    }
    
    @SuppressWarnings((false) ? "unchecked" : "")
    class Cond {
        
        @SuppressWarnings((false) ? "" : "unchecked")
        public Cond() {
            
        }
        
        @SuppressWarnings((false) ? (true) ? "   " : "unused" : "unchecked")
        public void aCond1() {
            
        }
        
        @SuppressWarnings((false) ? "unchecked" : (true) ? "   " : "unused")
        public void aCond2() {
            
        }
        
        @java.lang.SuppressWarnings((false) ? "unchecked" : ("" == "") ? (false) ? (true) ? "" : "foo" : "    " : "unused")
        public void seriously() {
            
        }
    }
}