mobile/android/thirdparty/org/json/simple/JSONAware.java

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:8b6de22c8f24
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 }

mercurial