View Javadoc
1   /*
2   MemberName
3   format = (default)^[a-z][a-zA-Z0-9]*$
4   applyToPublic = (default)true
5   applyToProtected = (default)true
6   applyToPackage = (default)true
7   applyToPrivate = false
8   
9   
10  */
11  
12  package com.puppycrawl.tools.checkstyle.checks.naming.membername;
13  
14  public class InputMemberName7
15  {
16      public int mPublic;
17      protected int mProtected;
18      int mPackage;//comment
19      private int mPrivate;
20  
21      public int _public; // violation
22      protected int _protected; // violation
23      int _package; // violation
24      private int _private;
25  }