Atria-soft Exml
[MPL-2] Mozilla public licence (V 2.0)
Implementation a a XML parser and generator. I create this one, because jackson API is done for JSON and not XML.
The main base of the parser is a simple SAX parser (not streamable right now...)
A DOM parser is available (based on SAX)
A POJO parse is in progress (based on SAX too)
POJO need to implement (TODO list):
- Immutable reader/writer
- Record reader/writer
The model of the Pojo reader is based on reading all sub element and create the object at the end (leaf first and parent node after). This is needed to manage the record and the immutable.
We do not manage the constructor properties. Then right now, the constructor MUST be empty
need to check if the class is an abstract or not...
Description
Languages
Java
100%