KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > grammars > InputEmbeddedNullChar


1 package com.puppycrawl.tools.checkstyle.grammars;
2
3 public class InputEmbeddedNullChar
4 {
5     public void doSomething()
6     {
7         // String below has an embedded null in it as well as char 036 repeated
8
// twice - none of shich should cause a problem as they're all valid
9
// UTF-8
10
String JavaDoc cctCxlMsg = ":ET:OE:}}";
11     }
12
13 }
14
Popular Tags