JSON lib removed, added source

This commit is contained in:
Parnassian
2014-02-23 14:53:24 +01:00
parent a206853599
commit b3c5653452
13 changed files with 2212 additions and 0 deletions
@@ -0,0 +1,17 @@
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;
}