java.lang.Object
com.thermidor.xml.output.OutputHandler
com.thermidor.xml.output.FileHandler
- public class FileHandler
- extends OutputHandler
|
Constructor Summary |
FileHandler()
Construct a new default instance of a FileHandler. |
|
Method Summary |
java.lang.String |
finish()
The responsibilty of the finished member function is to handle clean up
when the output is popped from the output stack. |
void |
handle(java.lang.String data)
Handle the provided string data . |
void |
start(java.lang.Object initializationData)
start is called on the output handler to initialize it
ready to start processing output. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FileHandler
public FileHandler()
- Construct a new default instance of a FileHandler.
start
public void start(java.lang.Object initializationData)
throws OutputHandler.InvalidInitializationParameter,
java.io.IOException
start is called on the output handler to initialize it
ready to start processing output.
- Specified by:
start in class OutputHandler
handle
public void handle(java.lang.String data)
throws java.io.IOException
- Handle the provided string data .
- Specified by:
handle in class OutputHandler
finish
public java.lang.String finish()
throws java.io.IOException
- The responsibilty of the finished member function is to handle clean up
when the output is popped from the output stack.
- Specified by:
finish in class OutputHandler