Merge branch 'Jalview-JS/JAL-3253-applet' of https://source.jalview.org/git/jalview...
[jalview.git] / src / org / json / simple / JSONAware.java
1 package org.json.simple;
2
3 /**
4  * Beans that support customized output of JSON text shall implement this interface.  
5  * @author FangYidong<fangyidong@yahoo.com.cn>
6  */
7 public interface JSONAware {
8         /**
9          * @return JSON text
10          */
11         String toJSONString();
12 }