Subversion Repository Public Repository

litesoft

Diff Revisions 960 vs 961 for /trunk/DeviceDesktopTest/src/org/litesoft/template/ChunkForText.java

Diff revisions: vs.
  @@ -1,20 +1,17 @@
1 1 package org.litesoft.template;
2 2
3 - public class ChunkForText implements Chunk
4 - {
3 + public class ChunkForText implements Chunk {
5 4 private final String mText;
6 5
7 6 /**
8 7 * @param pText !(null || empty)
9 8 */
10 - public ChunkForText( String pText )
11 - {
9 + public ChunkForText( String pText ) {
12 10 mText = pText;
13 11 }
14 12
15 13 @Override
16 - public void dump( Sink pWriter, ValueProvider pValueProvider )
17 - {
14 + public void dump( Sink pWriter, ValueProvider pValueProvider ) {
18 15 pWriter.write( mText );
19 16 }
20 17 }