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.
*
* @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;

View File

@ -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 {
/**

View File

@ -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 {

View File

@ -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;

View File

@ -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 {
/**

View File

@ -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 {
/**

View File

@ -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;

View File

@ -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) {

View File

@ -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 {
/**

View File

@ -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 {

View File

@ -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 {
/**

View File

@ -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 {
/**

View File

@ -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;

View File

@ -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;

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.
*
* @author Uriel Chemouni <uchemouni@gmail.com>
* @author Uriel Chemouni uchemouni@gmail.com
*/
class JSONParserByteArray extends JSONParserMemory {
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.
*
* @author Uriel Chemouni <uchemouni@gmail.com>
* @author Uriel Chemouni uchemouni@gmail.com
*/
class JSONParserInputStream extends JSONParserReader {
// len

View File

@ -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
*/

View File

@ -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;

View File

@ -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
*/

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.
*
* @author Uriel Chemouni <uchemouni@gmail.com>
* @author Uriel Chemouni uchemouni@gmail.com
*/
class JSONParserString extends JSONParserMemory {
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.
*
* @author Uriel Chemouni <uchemouni@gmail.com>
* @author Uriel Chemouni uchemouni@gmail.com
*/
public class ParseException extends Exception {
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";
/**

View File

@ -28,8 +28,8 @@ import java.util.Properties;
*
* OSX Path: I2PBrowser.app/Contents/MacOS/firefox
*
* OSX => ../../../I2PBrowser-Data/I2P
* Linux/Windows => ../I2PBrowser-Data/I2P
* OSX =&gt; ../../../I2PBrowser-Data/I2P
* Linux/Windows =&gt; ../I2PBrowser-Data/I2P
*
* ---- 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
* 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.
*
*