mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
12 lines
255 B
Java
12 lines
255 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();
|
||
|
|
}
|