Provides classes for handling (loading and saving) data stored in XML file format.
Common interface for all formats makes it easy to manage data flow from one format to another.
Loading data from XML
There are only two methods neccessary to get all data from file:
inputMetadata()
- to get all metadata from file.
inputExample()
- to get an example from file.
Saving data to XML
There are three methods neccessary to save any data from decision table to file:
outputMetadata()
- to save all metadata to file.
outputExample()
- to save an example to file.
outputDone()
- to finalize file (closes openned tags).
-
Class Summary
Class |
Description |
XmlInput |
This class is intended to load XML document from given source.
|
XmlOutput |
This clas is intended to write data as XML file to given stream.
|