1 6 package com.puppycrawl.tools.checkstyle; 7 8 15 public class InputJavadocStyleCheck 16 { 17 private String first; 19 20 21 private String second; 22 23 28 public InputJavadocStyleCheck() 29 { 30 } 31 32 35 private void method1() 36 { 37 } 38 39 42 private void method2() 43 { 44 } 45 46 49 private void method3() 50 { 51 } 52 53 56 private void method4() 57 { 58 } 59 60 70 private void method5(int arg1) 71 { 72 } 73 74 77 protected void method6() 78 { 79 } 80 81 84 void method7() 85 { 86 } 87 88 92 public void method8() 93 { 94 } 95 96 97 public void method9() 98 { 99 } 100 101 102 104 111 private void method10() 112 { } 114 115 130 private void method11() 131 { } 133 134 139 private void method12() 140 { } 142 143 180 private void method13() 181 { } 183 184 188 189 private void method14() 190 { } 192 193 197 198 private void method15() 199 { } 201 202 203 public static final int dummy = 4911; 204 205 207 public void method16() 208 { } 210 211 214 protected void method17(String a) 215 { } 217 218 221 void method18(String a) 222 { } 224 225 227 private static int ASDF = 0; 228 230 231 public void method19() 232 { } 234 235 public enum Test 236 { 238 241 value1, 242 243 246 value2, 247 } 248 249 254 public class TestClass<T1> 255 { 256 260 public T1 getX() 261 { 262 return null; 263 } 264 265 270 public <V> V getY() 271 { 272 return null; 273 } 274 } 275 276 280 public void foo_1291847_1() { 281 } 282 283 287 public void foo_1291847_2() { 288 } 289 290 } 291 | Popular Tags |