View Javadoc
1   /*
2   OverloadMethodsDeclarationOrder
3   
4   
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.coding.overloadmethodsdeclarationorder;
8   
9   public class InputOverloadMethodsDeclarationOrderPrivateAndStaticMethods {
10      public void testing() {
11      }
12  
13      private void testing(int a) {
14      }
15  
16      public void testing(int a, int b) {
17      }
18  
19      public static void testing(String a) {
20      }
21  
22      public void testing(String a, String b) {
23      }
24  }