org.json.simple.JSONStreamAware.java Source code

Java tutorial

Introduction

Here is the source code for org.json.simple.JSONStreamAware.java

Source

package org.json.simple;

import java.io.IOException;
import java.io.Writer;

public interface JSONStreamAware {
    void writeJSONString(Writer out) throws IOException;
}