1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00
This commit is contained in:
John J. Aylward 2015-12-09 10:07:36 -05:00
commit 48302592cf
14 changed files with 12 additions and 12 deletions

2
CDL.java Executable file → Normal file
View file

@ -41,7 +41,7 @@ SOFTWARE.
* The names for the elements in the JSONObjects can be taken from the names
* in the first row.
* @author JSON.org
* @version 2015-05-01
* @version 2015-12-09
*/
public class CDL {

2
Cookie.java Executable file → Normal file
View file

@ -28,7 +28,7 @@ SOFTWARE.
* Convert a web browser cookie specification to a JSONObject and back.
* JSON and Cookies are both notations for name/value pairs.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class Cookie {

2
CookieList.java Executable file → Normal file
View file

@ -29,7 +29,7 @@ import java.util.Iterator;
/**
* Convert a web browser cookie list string to a JSONObject and back.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class CookieList {

2
HTTP.java Executable file → Normal file
View file

@ -29,7 +29,7 @@ import java.util.Iterator;
/**
* Convert an HTTP header to a JSONObject and back.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class HTTP {

2
HTTPTokener.java Executable file → Normal file
View file

@ -28,7 +28,7 @@ SOFTWARE.
* The HTTPTokener extends the JSONTokener to provide additional methods
* for the parsing of HTTP headers.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class HTTPTokener extends JSONTokener {

2
JSONException.java Executable file → Normal file
View file

@ -4,7 +4,7 @@ package org.json;
* The JSONException is thrown by the JSON.org classes when things are amiss.
*
* @author JSON.org
* @version 2015-10-18
* @version 2015-12-09
*/
public class JSONException extends RuntimeException {
/** Serialization ID */

2
JSONML.java Executable file → Normal file
View file

@ -33,7 +33,7 @@ import java.util.Iterator;
* the JsonML transform.
*
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class JSONML {

2
JSONObject.java Executable file → Normal file
View file

@ -92,7 +92,7 @@ import java.util.Set;
* </ul>
*
* @author JSON.org
* @version 2015-12-05
* @version 2015-12-09
*/
public class JSONObject {
/**

0
JSONString.java Executable file → Normal file
View file

2
JSONStringer.java Executable file → Normal file
View file

@ -54,7 +54,7 @@ import java.io.StringWriter;
* <p>
* This can sometimes be easier than using a JSONObject to build a string.
* @author JSON.org
* @version 2008-09-18
* @version 2015-12-09
*/
public class JSONStringer extends JSONWriter {
/**

2
JSONWriter.java Executable file → Normal file
View file

@ -54,7 +54,7 @@ SOFTWARE.
* <p>
* This can sometimes be easier than using a JSONObject to build a string.
* @author JSON.org
* @version 2011-11-24
* @version 2015-12-09
*/
public class JSONWriter {
private static final int maxdepth = 200;

0
README Executable file → Normal file
View file

2
XML.java Executable file → Normal file
View file

@ -31,7 +31,7 @@ import java.util.Iterator;
* covert a JSONObject into an XML text.
*
* @author JSON.org
* @version 2015-10-18
* @version 2015-12-09
*/
@SuppressWarnings("boxing")
public class XML {

2
XMLTokener.java Executable file → Normal file
View file

@ -28,7 +28,7 @@ SOFTWARE.
* The XMLTokener extends the JSONTokener to provide additional methods
* for the parsing of XML texts.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class XMLTokener extends JSONTokener {