Fixed bot dialog

This commit is contained in:
JKetelaar
2015-01-31 02:18:25 +01:00
commit 000bd80699
262 changed files with 54509 additions and 0 deletions
@@ -0,0 +1,14 @@
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();
}