View Javadoc
1   /*
2   ImportOrder
3   option = (default)under
4   groups = java, javax, org
5   ordered = (default)true
6   separated = (default)false
7   separatedStaticGroups = (default)false
8   caseSensitive = (default)true
9   staticGroups = (default)
10  sortStaticImportsAlphabetically = (default)false
11  useContainerOrderingForStatic = (default)false
12  tokens = (default)STATIC_IMPORT
13  
14  
15  */
16  
17  package com.puppycrawl.tools.checkstyle.checks.imports.importorder;
18  
19  import java.io.File;
20  import java.io.IOException;
21  import java.util.Iterator;
22  
23  import javax.crypto.Cipher; // violation 'Extra separation in import group before .*'
24  
25  public class InputImportOrder_WildcardUnspecified {
26  }