mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 00:37:55 +00:00
63cf451cd7
This reverts commit ddc65bdfa8.
15 lines
260 B
Java
15 lines
260 B
Java
package org.json.simple;
|
|
|
|
/**
|
|
* Beans that support customized output of JSON text shall implement this
|
|
* interface.
|
|
*
|
|
* @author FangYidong<fangyidong@yahoo.com.cn>
|
|
*/
|
|
public interface JSONAware {
|
|
/**
|
|
* @return JSON text
|
|
*/
|
|
String toJSONString();
|
|
}
|