1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/thirdparty/org/json/simple/JSONStreamAware.java Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +package org.json.simple; 1.5 + 1.6 +import java.io.IOException; 1.7 +import java.io.Writer; 1.8 + 1.9 +/** 1.10 + * Beans that support customized output of JSON text to a writer shall implement this interface. 1.11 + * @author FangYidong<fangyidong@yahoo.com.cn> 1.12 + */ 1.13 +public interface JSONStreamAware { 1.14 + /** 1.15 + * write JSON string to out. 1.16 + */ 1.17 + void writeJSONString(Writer out) throws IOException; 1.18 +}