View Javadoc
1   /*
2   com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck
3   format = (default)^[a-z][a-zA-Z0-9]*$
4   applyToPublic = (default)true
5   applyToProtected = (default)true
6   applyToPackage = (default)true
7   applyToPrivate = (default)true
8   
9   
10  */
11  
12  package com.puppycrawl.tools.checkstyle.grammar;
13  
14  public class InputEmbeddedNullChar // ok
15  {
16      public void doSomething()
17      {
18          // String below has an embedded null in it as well as char 036 repeated
19          // twice - none of shich should cause a problem as they're all valid
20          // UTF-8
21          String cctCxlMsg = ":ET:OE:}}";
22      }
23  
24  }