Methods Summary |
---|
public com.sun.org.apache.xalan.internal.xsltc.runtime.output.OutputBuffer | append(java.lang.String s)
try {
_writer.write(s);
}
catch (IOException e) {
throw new RuntimeException(e.toString());
}
return this;
|
public com.sun.org.apache.xalan.internal.xsltc.runtime.output.OutputBuffer | append(char[] s, int from, int to)
try {
_writer.write(s, from, to);
}
catch (IOException e) {
throw new RuntimeException(e.toString());
}
return this;
|
public com.sun.org.apache.xalan.internal.xsltc.runtime.output.OutputBuffer | append(char ch)
try {
_writer.write(ch);
}
catch (IOException e) {
throw new RuntimeException(e.toString());
}
return this;
|
public java.lang.String | close()
try {
_writer.flush();
}
catch (IOException e) {
throw new RuntimeException(e.toString());
}
return "";
|