Ejemplo n.º 1
0
 public void writeText(char text) throws IOException {
   System.out.println("YYY-Writer:writeText");
   writer.write(text);
 }
Ejemplo n.º 2
0
 public void flush() throws IOException {
   writer.flush();
 }
Ejemplo n.º 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());
 }
Ejemplo n.º 4
0
 public void write(String str) throws IOException {
   writer.write(str);
 }
Ejemplo n.º 5
0
 public void write(String str, int off, int len) throws IOException {
   writer.write(str, off, len);
 }
Ejemplo n.º 6
0
 public void write(int c) throws IOException {
   writer.write(c);
 }
Ejemplo n.º 7
0
 public void write(char[] cbuf, int off, int len) throws IOException {
   writer.write(cbuf, off, len);
 }
Ejemplo n.º 8
0
 public void write(char cbuf) throws IOException {
   writer.write(cbuf);
 }
Ejemplo n.º 9
0
 public void close() throws IOException {
   writer.close();
 }
Ejemplo n.º 10
0
 public void writeText(char text[], int off, int len) throws IOException {
   System.out.println("YYY-Writer:writeText");
   writer.write(text, off, len);
 }