1
2
3
4
5
6
7
8
9
10
11
12
13 package com.puppycrawl.tools.checkstyle.checks.suppresswarningsholder;
14
15 public class InputSuppressWarningsHolderAlias5 {
16 public void needsLotsOfParameters0(int a,
17 int b, int c, int d, int e, int f, int g, int h) {
18
19 }
20
21 @SuppressWarnings("paramnum")
22 public void needsLotsOfParameters(int a,
23 int b, int c, int d, int e, int f, int g, int h) {
24
25 }
26
27 @SuppressWarnings("ParamnumUnknown")
28 public void needsLotsOfParameters2(int a,
29 int b, int c, int d, int e, int f, int g, int h) {
30
31 }
32
33 @SuppressWarnings("PAramnuM")
34 public void needsLotsOfParameters3(int a,
35 int b, int c, int d, int e, int f, int g, int h) {
36
37 }
38
39 @SuppressWarnings("PARAMNUM")
40 public void needsLotsOfParameters4(int a,
41 int b, int c, int d, int e, int f, int g, int h) {
42
43 }
44 }