package net.sf.lab3f.json; import org.json.JSONObject; import org.json.JSONStringer; import org.json.JSONWriter; public interface JSONable{ JSONStringer getStringer(); JSONWriter getWriter(java.io.Writer w); JSONObject getObject(JSONStringer jss); }