michael@0: package org.json.simple; michael@0: michael@0: /** michael@0: * Beans that support customized output of JSON text shall implement this interface. michael@0: * @author FangYidong michael@0: */ michael@0: public interface JSONAware { michael@0: /** michael@0: * @return JSON text michael@0: */ michael@0: String toJSONString(); michael@0: }