1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/thirdparty/org/json/simple/JSONAware.java Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +package org.json.simple; 1.5 + 1.6 +/** 1.7 + * Beans that support customized output of JSON text shall implement this interface. 1.8 + * @author FangYidong<fangyidong@yahoo.com.cn> 1.9 + */ 1.10 +public interface JSONAware { 1.11 + /** 1.12 + * @return JSON text 1.13 + */ 1.14 + String toJSONString(); 1.15 +}