Clover icon

Coverage Report

  1. Project Clover database Mon Nov 11 2024 17:27:16 GMT
  2. Package org.json.simple

File JSONStreamAware.java

 

Code metrics

0
0
0
1
18
7
0
-
-
0
-

Classes

Class Line # Actions
JSONStreamAware 12 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package org.json.simple;
2   
3    import java.io.IOException;
4    import java.io.Writer;
5   
6    /**
7    * Beans that support customized output of JSON text to a writer shall implement
8    * this interface.
9    *
10    * @author FangYidong<fangyidong@yahoo.com.cn>
11    */
 
12    public interface JSONStreamAware
13    {
14    /**
15    * write JSON string to out.
16    */
17    void writeJSONString(Writer out) throws IOException;
18    }