1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

Marking up class and method names as inline code

This commit is contained in:
Felix Leipold 2017-11-17 12:33:50 +01:00
parent 195963357c
commit 9eb8c27724

View file

@ -66,7 +66,7 @@ cookie lists.
**JSONML.java**: `JSONML` provides support for converting between JSONML and XML. **JSONML.java**: `JSONML` provides support for converting between JSONML and XML.
**XMLTokener.java**: `XMLTokener` extends JSONTokener for parsing XML text. **XMLTokener.java**: `XMLTokener` extends `JSONTokener` for parsing XML text.
Unit tests are maintained in a separate project. Contributing developers can test Unit tests are maintained in a separate project. Contributing developers can test
JSON-java pull requests with the code in this project: JSON-java pull requests with the code in this project:
@ -76,9 +76,9 @@ Numeric types in this package comply with ECMA-404: The JSON Data Interchange Fo
(http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf) and (http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf) and
RFC 7159: The JavaScript Object Notation (JSON) Data Interchange Format RFC 7159: The JavaScript Object Notation (JSON) Data Interchange Format
(https://tools.ietf.org/html/rfc7159#section-6). (https://tools.ietf.org/html/rfc7159#section-6).
This package fully supports Integer, Long, and Double Java types. Partial support This package fully supports `Integer`, `Long`, and `Double` Java types. Partial support
for BigInteger and BigDecimal values in JSONObject and JSONArray objects is provided for `BigInteger` and `BigDecimal` values in `JSONObject` and `JSONArray` objects is provided
in the form of get(), opt(), and put() API methods. in the form of `get()`, `opt()`, and `put()` API methods.
Although 1.6 compatibility is currently supported, it is not a project goal and may be Although 1.6 compatibility is currently supported, it is not a project goal and may be
removed in some future release. removed in some future release.