mirror of
https://github.com/unmojang/authlib-injector.git
synced 2025-10-03 08:11:04 -04:00
[json-simple]code clean up
This commit is contained in:
parent
48a6919c6a
commit
5c816c2e90
@ -2,7 +2,7 @@ package org.to2mbn.authlibinjector.internal.org.json.simple;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Beans that support customized output of JSON text shall implement this interface.
|
* 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 {
|
public interface JSONAware {
|
||||||
|
@ -5,7 +5,7 @@ import java.io.Writer;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Beans that support customized output of JSON text to a writer shall implement this interface.
|
* 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 {
|
public interface JSONStreamAware {
|
||||||
|
@ -42,7 +42,7 @@ public interface ContentHandler {
|
|||||||
*
|
*
|
||||||
* @return false if the handler wants to stop parsing after return.
|
* @return false if the handler wants to stop parsing after return.
|
||||||
* @throws ParseException
|
* @throws ParseException
|
||||||
*
|
*
|
||||||
* @see #startObject
|
* @see #startObject
|
||||||
*/
|
*/
|
||||||
boolean endObject() throws ParseException, IOException;
|
boolean endObject() throws ParseException, IOException;
|
||||||
@ -55,7 +55,7 @@ public interface ContentHandler {
|
|||||||
*
|
*
|
||||||
* @return false if the handler wants to stop parsing after return.
|
* @return false if the handler wants to stop parsing after return.
|
||||||
* @throws ParseException
|
* @throws ParseException
|
||||||
*
|
*
|
||||||
* @see #endObjectEntry
|
* @see #endObjectEntry
|
||||||
*/
|
*/
|
||||||
boolean startObjectEntry(String key) throws ParseException, IOException;
|
boolean startObjectEntry(String key) throws ParseException, IOException;
|
||||||
@ -65,7 +65,7 @@ public interface ContentHandler {
|
|||||||
*
|
*
|
||||||
* @return false if the handler wants to stop parsing after return.
|
* @return false if the handler wants to stop parsing after return.
|
||||||
* @throws ParseException
|
* @throws ParseException
|
||||||
*
|
*
|
||||||
* @see #startObjectEntry
|
* @see #startObjectEntry
|
||||||
*/
|
*/
|
||||||
boolean endObjectEntry() throws ParseException, IOException;
|
boolean endObjectEntry() throws ParseException, IOException;
|
||||||
@ -75,7 +75,7 @@ public interface ContentHandler {
|
|||||||
*
|
*
|
||||||
* @return false if the handler wants to stop parsing after return.
|
* @return false if the handler wants to stop parsing after return.
|
||||||
* @throws ParseException
|
* @throws ParseException
|
||||||
*
|
*
|
||||||
* @see #endArray
|
* @see #endArray
|
||||||
*/
|
*/
|
||||||
boolean startArray() throws ParseException, IOException;
|
boolean startArray() throws ParseException, IOException;
|
||||||
@ -85,7 +85,7 @@ public interface ContentHandler {
|
|||||||
*
|
*
|
||||||
* @return false if the handler wants to stop parsing after return.
|
* @return false if the handler wants to stop parsing after return.
|
||||||
* @throws ParseException
|
* @throws ParseException
|
||||||
*
|
*
|
||||||
* @see #startArray
|
* @see #startArray
|
||||||
*/
|
*/
|
||||||
boolean endArray() throws ParseException, IOException;
|
boolean endArray() throws ParseException, IOException;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user