1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-19 23:08:46 +00:00
Files
UXP/mobile/android/thirdparty/org/json/simple/JSONStreamAware.java
T

16 lines
363 B
Java

package org.json.simple;
import java.io.IOException;
import java.io.Writer;
/**
* Beans that support customized output of JSON text to a writer shall implement this interface.
* @author FangYidong<fangyidong@yahoo.com.cn>
*/
public interface JSONStreamAware {
/**
* write JSON string to out.
*/
void writeJSONString(Writer out) throws IOException;
}