This parser is based on the Jackson's JSON parser and uses internally an {@link ObjectMapper} to create a tree model of the JSON data. Thetree model is then traversed using a property-centric visitor model. The parser works as follows:
The JSON data is parsed and a JSON tree model is created.
The tree model is then traversed using {@link JsonPropertyParser}s. For each property found in the tree model, the corresponding {@link JsonPropertyParser} is applied.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.