View Javadoc
1   /*
2   VisibilityModifier
3   packageAllowed = (default)false
4   protectedAllowed = (default)false
5   publicMemberPattern = (default)^serialVersionUID$
6   allowPublicFinalFields = (default)false
7   allowPublicImmutableFields = true
8   immutableClassCanonicalNames = java.util.Arrays
9   ignoreAnnotationCanonicalNames = (default)com.google.common.annotations.VisibleForTesting, \
10                                   org.junit.ClassRule, org.junit.Rule
11  
12  
13  */
14  
15  package com.puppycrawl.tools.checkstyle.checks.design.visibilitymodifier;
16  
17  import java.util.Arrays;
18  
19  public final class InputVisibilityModifierImmutableStarImport
20  {
21      public final Arrays f = null; // If Arrays is specified as immutable class,
22                                    // no matter of canonical name
23                                    // no warning will be here, star imports are out of consideration
24  }