Files
Parabot/parabotv2/src/org/json/simple/JSONAware.java
T
JKetelaar 63cf451cd7 Revert "Revert "Fixed bot dialog""
This reverts commit ddc65bdfa8.
2015-01-31 02:56:59 +01:00

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();
}