Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to figure out whether or not the Simple framework for XML serialization (Simple) is implemented as a SAX, Pull or DOM Parser, or something completely different? Is this what is referred to as a data binding? I have tried reading a bunch of places on the projects website, but without luck. Basically, does anyone know or can anyone read what type of parser is used in the Simple project?

share|improve this question

1 Answer

up vote 1 down vote accepted

It is a sort of data binding framework, and i'd guess that deserialization is implemented on top of a pull parser.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.