Package org.apache.fop.render.txt
Class TXTStream
- java.lang.Object
-
- org.apache.fop.render.txt.TXTStream
-
public class TXTStream extends java.lang.Object
Helper class for text streams.
-
-
Constructor Summary
Constructors Constructor Description TXTStream(java.io.OutputStream os)
Main constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(java.lang.String str)
Adds a String to the OutputStreamvoid
setDoOutput(boolean doout)
Controls whether output is actually written.void
setEncoding(java.lang.String encoding)
Set the encoding for the text stream.
-
-
-
Method Detail
-
add
public void add(java.lang.String str)
Adds a String to the OutputStream- Parameters:
str
- String to add
-
setDoOutput
public void setDoOutput(boolean doout)
Controls whether output is actually written.- Parameters:
doout
- true to enable output, false to suppress
-
setEncoding
public void setEncoding(java.lang.String encoding)
Set the encoding for the text stream.- Parameters:
encoding
- the encoding, if null, "UTF-8" is chosen as default
-
-