Clover icon

Coverage Report

  1. Project Clover database Mon Nov 18 2024 09:56:54 GMT
  2. Package org.json.simple

File JSONAware.java

 

Code metrics

0
0
0
1
15
5
0
-
-
0
-

Classes

Class Line # Actions
JSONAware 9 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package org.json.simple;
2   
3    /**
4    * Beans that support customized output of JSON text shall implement this
5    * interface.
6    *
7    * @author FangYidong<fangyidong@yahoo.com.cn>
8    */
 
9    public interface JSONAware
10    {
11    /**
12    * @return JSON text
13    */
14    String toJSONString();
15    }