1
2
3
4
5
6
7
8
9
10
11
12
13 package com.puppycrawl.tools.checkstyle.checks.whitespace.emptylineseparator;
14
15 import org.junit.Ignore;
16
17 public class InputEmptyLineSeparatorWithJavadoc {
18
19 int test0(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
20 return 0;
21 }
22
23
24
25
26
27 void myMethod() {}
28
29
30
31 void myMethod2() {
32 int tab0 = 1;
33 }
34
35
36 int test1(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
37 return 0;
38 }
39
40
41
42
43 int test2(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
44
45 return 0;
46 }
47
48
49
50
51 int test3(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
52
53 return 0;
54 }
55
56 int test4(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
57
58 return 0;
59 }
60
61
62
63
64
65 int test5(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
66
67 return 0;
68 }
69
70
71
72
73 int test6(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
74
75 return 0;
76
77
78 }
79
80 int test7(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
81 return 0;
82 }
83
84
85
86 int test8(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
87
88 return 0;
89 }
90
91
92
93 int test9(int badFormat1, int badFormat2, final int badFormat3) throws Exception {
94
95 return 0;
96 }
97
98
99 @Ignore
100
101
102
103 @Deprecated
104 public void foo6() {
105
106 return;
107 }
108 }