20 lines
584 B
Java
20 lines
584 B
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
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;
|
|
}
|