Class | Line # | Actions | |||
---|---|---|---|---|---|
JSONAware | 9 | 0 | 0 |
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 | } |