Javadoc fixes

This commit is contained in:
zzz
2018-05-30 13:11:50 +00:00
parent 884a42b814
commit 04a9f5612b
23 changed files with 28 additions and 27 deletions

View File

@ -24,8 +24,8 @@ import net.minidev.json.reader.JsonWriter;
/** /**
* A JSON array. JSONObject supports java.util.List interface. * A JSON array. JSONObject supports java.util.List interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong fangyidong@yahoo.com.cn
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
public class JSONArray extends ArrayList<Object> implements List<Object>, JSONAwareEx, JSONStreamAwareEx { public class JSONArray extends ArrayList<Object> implements List<Object>, JSONAwareEx, JSONStreamAwareEx {
private static final long serialVersionUID = 9106884089231309568L; private static final long serialVersionUID = 9106884089231309568L;

View File

@ -19,7 +19,7 @@ package net.minidev.json;
* Beans that support customized output of JSON text shall implement this * Beans that support customized output of JSON text shall implement this
* interface. * interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong fangyidong@yahoo.com.cn
*/ */
public interface JSONAware { public interface JSONAware {
/** /**

View File

@ -21,7 +21,7 @@ package net.minidev.json;
* *
* Adding compressions and formating features * Adding compressions and formating features
* *
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
public interface JSONAwareEx extends JSONAware { public interface JSONAwareEx extends JSONAware {

View File

@ -25,8 +25,8 @@ import net.minidev.json.reader.JsonWriter;
* A JSON object. Key value pairs are unordered. JSONObject supports * A JSON object. Key value pairs are unordered. JSONObject supports
* java.util.Map interface. * java.util.Map interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong fangyidong@yahoo.com.cn
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
public class JSONObject extends HashMap<String, Object> implements JSONAware, JSONAwareEx, JSONStreamAwareEx { public class JSONObject extends HashMap<String, Object> implements JSONAware, JSONAwareEx, JSONStreamAwareEx {
private static final long serialVersionUID = -503443796854799292L; private static final long serialVersionUID = -503443796854799292L;

View File

@ -21,7 +21,7 @@ import java.io.IOException;
* Beans that support customized output of JSON text to a writer shall implement * Beans that support customized output of JSON text to a writer shall implement
* this interface. * this interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong fangyidong@yahoo.com.cn
*/ */
public interface JSONStreamAware { public interface JSONStreamAware {
/** /**

View File

@ -21,7 +21,7 @@ import java.io.IOException;
* Beans that support customized output of JSON text to a writer shall implement * Beans that support customized output of JSON text to a writer shall implement
* this interface. * this interface.
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong fangyidong@yahoo.com.cn
*/ */
public interface JSONStreamAwareEx extends JSONStreamAware { public interface JSONStreamAwareEx extends JSONStreamAware {
/** /**

View File

@ -23,13 +23,13 @@ import net.minidev.json.JStylerObj.StringProtector;
/** /**
* JSONStyle object configure JSonSerializer reducing output size * JSONStyle object configure JSonSerializer reducing output size
* *
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
public class JSONStyle { public class JSONStyle {
/** /**
* for advanced usage sample see * 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_KEYS = 1;
public final static int FLAG_PROTECT_4WEB = 2; public final static int FLAG_PROTECT_4WEB = 2;

View File

@ -17,7 +17,7 @@ package net.minidev.json;
* limitations under the License. * limitations under the License.
*/ */
/** /**
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
public class JSONUtil { public class JSONUtil {
public static String getSetterName(String key) { public static String getSetterName(String key) {

View File

@ -42,7 +42,7 @@ import net.minidev.json.reader.JsonWriterI;
* The most commonly use methode are {@link #parse(String)} * The most commonly use methode are {@link #parse(String)}
* {@link #toJSONString(Object)} * {@link #toJSONString(Object)}
* *
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
public class JSONValue { public class JSONValue {
/** /**

View File

@ -20,7 +20,7 @@ import java.io.IOException;
/** /**
* protected class used to stored Internal methods * protected class used to stored Internal methods
* *
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
class JStylerObj { class JStylerObj {

View File

@ -25,7 +25,7 @@ import net.minidev.json.JSONObject;
/** /**
* Container factory for creating containers for JSON object and JSON array. * 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 { public interface ContainerFactory {
/** /**

View File

@ -23,7 +23,7 @@ import java.io.IOException;
* *
* @see org.xml.sax.ContentHandler * @see org.xml.sax.ContentHandler
* *
* @author FangYidong<fangyidong@yahoo.com.cn> * @author FangYidong fangyidong@yahoo.com.cn
*/ */
public interface ContentHandler { public interface ContentHandler {
/** /**

View File

@ -24,7 +24,7 @@ import java.util.Set;
/** /**
* Fake Container factory used for JSon check and SaX parsing * 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 class FakeContainerFactory implements ContainerFactory {
public FackList list; public FackList list;

View File

@ -35,7 +35,7 @@ import java.util.Map;
* @see JSONParserMemory * @see JSONParserMemory
* @see JSONParserStream * @see JSONParserStream
* *
* @author Uriel Chemouni <uchemouni@gmail.com> * @author Uriel Chemouni uchemouni@gmail.com
*/ */
abstract class JSONParserBase { abstract class JSONParserBase {
protected char c; protected char c;

View File

@ -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. * 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 { class JSONParserByteArray extends JSONParserMemory {
private byte[] in; private byte[] in;

View File

@ -22,7 +22,7 @@ import java.io.UnsupportedEncodingException;
/** /**
* Parser for JSON text. Please note that JSONParser is NOT thread-safe. * 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 { class JSONParserInputStream extends JSONParserReader {
// len // len

View File

@ -24,7 +24,7 @@ import java.io.IOException;
/** /**
* Parser for JSON text. Please note that JSONParser is NOT thread-safe. * 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 JSONParserString
* @see JSONParserByteArray * @see JSONParserByteArray
*/ */

View File

@ -23,7 +23,7 @@ import java.io.Reader;
/** /**
* Parser for JSON text. Please note that JSONParser is NOT thread-safe. * 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 { class JSONParserReader extends JSONParserStream {
private Reader in; private Reader in;

View File

@ -23,7 +23,7 @@ import java.io.IOException;
/** /**
* Parser for JSON text. Please note that JSONParser is NOT thread-safe. * 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 JSONParserInputStream
* @see JSONParserReader * @see JSONParserReader
*/ */

View File

@ -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. * 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 { class JSONParserString extends JSONParserMemory {
private String in; private String in;

View File

@ -18,7 +18,7 @@ package net.minidev.json.parser;
/** /**
* ParseException explains why and where the error occurs in source JSON text. * 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 { public class ParseException extends Exception {
private static final long serialVersionUID = 8879024178584091857L; private static final long serialVersionUID = 8879024178584091857L;

View File

@ -580,6 +580,7 @@ class StoreJob extends JobImpl {
} }
****/ ****/
/** */
public static final String MIN_STORE_VERSION = "0.9.28"; public static final String MIN_STORE_VERSION = "0.9.28";
/** /**

View File

@ -28,8 +28,8 @@ import java.util.Properties;
* *
* OSX Path: I2PBrowser.app/Contents/MacOS/firefox * OSX Path: I2PBrowser.app/Contents/MacOS/firefox
* *
* OSX => ../../../I2PBrowser-Data/I2P * OSX =&gt; ../../../I2PBrowser-Data/I2P
* Linux/Windows => ../I2PBrowser-Data/I2P * Linux/Windows =&gt; ../I2PBrowser-Data/I2P
* *
* ---- However, * ---- However,
* *
@ -40,7 +40,7 @@ import java.util.Properties;
* Base directory is where we usually find the wrapper config (on normal installs) together with jars and * Base directory is where we usually find the wrapper config (on normal installs) together with jars and
* static files in an I2P installation. * static files in an I2P installation.
* *
* Portable uses both, with the key usage being that I2P is extracted from <whatever> to a base directory, * Portable uses both, with the key usage being that I2P is extracted from (whatever) to a base directory,
* but still has it's config separate in the working directory. * but still has it's config separate in the working directory.
* *
* *