View Javadoc
1   /*
2   DeclarationOrder
3   ignoreConstructors = (default)false
4   ignoreModifiers = (default)false
5   
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.coding.declarationorder;
10  
11  public class InputDeclarationOrder2 {
12      private static char[] sHexChars = {
13              '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
14              'A', 'B', 'C', 'D', 'E', 'F' };
15  
16      int[] array = new int[] {1, 2, 3};
17  
18      int[] array2 = new int[] {
19              1, 2, 3
20      };
21  
22  }