Example #1
0
 public void writeText(char text) throws IOException {
   System.out.println("YYY-Writer:writeText");
   writer.write(text);
 }
Example #2
0
 public void flush() throws IOException {
   writer.flush();
 }
Example #3
0
 public void writeText(Object text, String componentPropertyName) throws IOException {
   System.out.println("YYY-Writer:writeText prop=" + componentPropertyName + " text=" + text);
   writer.write(text.toString());
 }
Example #4
0
 public void write(String str) throws IOException {
   writer.write(str);
 }
Example #5
0
 public void write(String str, int off, int len) throws IOException {
   writer.write(str, off, len);
 }
Example #6
0
 public void write(int c) throws IOException {
   writer.write(c);
 }
Example #7
0
 public void write(char[] cbuf, int off, int len) throws IOException {
   writer.write(cbuf, off, len);
 }
Example #8
0
 public void write(char cbuf) throws IOException {
   writer.write(cbuf);
 }
Example #9
0
 public void close() throws IOException {
   writer.close();
 }
Example #10
0
 public void writeText(char text[], int off, int len) throws IOException {
   System.out.println("YYY-Writer:writeText");
   writer.write(text, off, len);
 }