forked from I2P_Developers/i2p.i2p
Javadoc fixes
This commit is contained in:
@ -24,8 +24,8 @@ import net.minidev.json.reader.JsonWriter;
|
||||
/**
|
||||
* A JSON array. JSONObject supports java.util.List interface.
|
||||
*
|
||||
* @author FangYidong<fangyidong@yahoo.com.cn>
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author FangYidong fangyidong@yahoo.com.cn
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class JSONArray extends ArrayList<Object> implements List<Object>, JSONAwareEx, JSONStreamAwareEx {
|
||||
private static final long serialVersionUID = 9106884089231309568L;
|
||||
|
@ -19,7 +19,7 @@ package net.minidev.json;
|
||||
* Beans that support customized output of JSON text shall implement this
|
||||
* interface.
|
||||
*
|
||||
* @author FangYidong<fangyidong@yahoo.com.cn>
|
||||
* @author FangYidong fangyidong@yahoo.com.cn
|
||||
*/
|
||||
public interface JSONAware {
|
||||
/**
|
||||
|
@ -21,7 +21,7 @@ package net.minidev.json;
|
||||
*
|
||||
* Adding compressions and formating features
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
|
||||
public interface JSONAwareEx extends JSONAware {
|
||||
|
@ -25,8 +25,8 @@ import net.minidev.json.reader.JsonWriter;
|
||||
* A JSON object. Key value pairs are unordered. JSONObject supports
|
||||
* java.util.Map interface.
|
||||
*
|
||||
* @author FangYidong<fangyidong@yahoo.com.cn>
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author FangYidong fangyidong@yahoo.com.cn
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class JSONObject extends HashMap<String, Object> implements JSONAware, JSONAwareEx, JSONStreamAwareEx {
|
||||
private static final long serialVersionUID = -503443796854799292L;
|
||||
|
@ -21,7 +21,7 @@ import java.io.IOException;
|
||||
* Beans that support customized output of JSON text to a writer shall implement
|
||||
* this interface.
|
||||
*
|
||||
* @author FangYidong<fangyidong@yahoo.com.cn>
|
||||
* @author FangYidong fangyidong@yahoo.com.cn
|
||||
*/
|
||||
public interface JSONStreamAware {
|
||||
/**
|
||||
|
@ -21,7 +21,7 @@ import java.io.IOException;
|
||||
* Beans that support customized output of JSON text to a writer shall implement
|
||||
* this interface.
|
||||
*
|
||||
* @author FangYidong<fangyidong@yahoo.com.cn>
|
||||
* @author FangYidong fangyidong@yahoo.com.cn
|
||||
*/
|
||||
public interface JSONStreamAwareEx extends JSONStreamAware {
|
||||
/**
|
||||
|
@ -23,13 +23,13 @@ import net.minidev.json.JStylerObj.StringProtector;
|
||||
/**
|
||||
* JSONStyle object configure JSonSerializer reducing output size
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class JSONStyle {
|
||||
/**
|
||||
* for advanced usage sample see
|
||||
*
|
||||
* @see net.minidev.json.test.TestCompressorFlags
|
||||
* see net.minidev.json.test.TestCompressorFlags
|
||||
*/
|
||||
public final static int FLAG_PROTECT_KEYS = 1;
|
||||
public final static int FLAG_PROTECT_4WEB = 2;
|
||||
|
@ -17,7 +17,7 @@ package net.minidev.json;
|
||||
* limitations under the License.
|
||||
*/
|
||||
/**
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class JSONUtil {
|
||||
public static String getSetterName(String key) {
|
||||
|
@ -42,7 +42,7 @@ import net.minidev.json.reader.JsonWriterI;
|
||||
* The most commonly use methode are {@link #parse(String)}
|
||||
* {@link #toJSONString(Object)}
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class JSONValue {
|
||||
/**
|
||||
|
@ -20,7 +20,7 @@ import java.io.IOException;
|
||||
/**
|
||||
* protected class used to stored Internal methods
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
class JStylerObj {
|
||||
|
||||
|
@ -25,7 +25,7 @@ import net.minidev.json.JSONObject;
|
||||
/**
|
||||
* Container factory for creating containers for JSON object and JSON array.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public interface ContainerFactory {
|
||||
/**
|
||||
|
@ -23,7 +23,7 @@ import java.io.IOException;
|
||||
*
|
||||
* @see org.xml.sax.ContentHandler
|
||||
*
|
||||
* @author FangYidong<fangyidong@yahoo.com.cn>
|
||||
* @author FangYidong fangyidong@yahoo.com.cn
|
||||
*/
|
||||
public interface ContentHandler {
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ import java.util.Set;
|
||||
/**
|
||||
* Fake Container factory used for JSon check and SaX parsing
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class FakeContainerFactory implements ContainerFactory {
|
||||
public FackList list;
|
||||
|
@ -35,7 +35,7 @@ import java.util.Map;
|
||||
* @see JSONParserMemory
|
||||
* @see JSONParserStream
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
abstract class JSONParserBase {
|
||||
protected char c;
|
||||
|
@ -20,7 +20,7 @@ import static net.minidev.json.parser.ParseException.ERROR_UNEXPECTED_EOF;
|
||||
/**
|
||||
* Parser for JSON text. Please note that JSONParser is NOT thread-safe.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
class JSONParserByteArray extends JSONParserMemory {
|
||||
private byte[] in;
|
||||
|
@ -22,7 +22,7 @@ import java.io.UnsupportedEncodingException;
|
||||
/**
|
||||
* Parser for JSON text. Please note that JSONParser is NOT thread-safe.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
class JSONParserInputStream extends JSONParserReader {
|
||||
// len
|
||||
|
@ -24,7 +24,7 @@ import java.io.IOException;
|
||||
/**
|
||||
* Parser for JSON text. Please note that JSONParser is NOT thread-safe.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
* @see JSONParserString
|
||||
* @see JSONParserByteArray
|
||||
*/
|
||||
|
@ -23,7 +23,7 @@ import java.io.Reader;
|
||||
/**
|
||||
* Parser for JSON text. Please note that JSONParser is NOT thread-safe.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
class JSONParserReader extends JSONParserStream {
|
||||
private Reader in;
|
||||
|
@ -23,7 +23,7 @@ import java.io.IOException;
|
||||
/**
|
||||
* Parser for JSON text. Please note that JSONParser is NOT thread-safe.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
* @see JSONParserInputStream
|
||||
* @see JSONParserReader
|
||||
*/
|
||||
|
@ -20,7 +20,7 @@ import static net.minidev.json.parser.ParseException.ERROR_UNEXPECTED_EOF;
|
||||
/**
|
||||
* Parser for JSON text. Please note that JSONParser is NOT thread-safe.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
class JSONParserString extends JSONParserMemory {
|
||||
private String in;
|
||||
|
@ -18,7 +18,7 @@ package net.minidev.json.parser;
|
||||
/**
|
||||
* ParseException explains why and where the error occurs in source JSON text.
|
||||
*
|
||||
* @author Uriel Chemouni <uchemouni@gmail.com>
|
||||
* @author Uriel Chemouni uchemouni@gmail.com
|
||||
*/
|
||||
public class ParseException extends Exception {
|
||||
private static final long serialVersionUID = 8879024178584091857L;
|
||||
|
Reference in New Issue
Block a user