X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Forg%2Fjson%2Fsimple%2FJSONStreamAware.java;h=514cd6136ae11e0b5ff6a9ab37a578d70c9b5613;hb=57738a1f3c19b1c3a00bd3ac5108f8cd0af32f99;hp=ab63b3e578cadb0073e1331d13ca27f60ead594a;hpb=e7338a61f3ce96dadf44ac80b2b32cc5ba4b94c8;p=jalview.git diff --git a/src/org/json/simple/JSONStreamAware.java b/src/org/json/simple/JSONStreamAware.java index ab63b3e..514cd61 100644 --- a/src/org/json/simple/JSONStreamAware.java +++ b/src/org/json/simple/JSONStreamAware.java @@ -4,12 +4,15 @@ import java.io.IOException; import java.io.Writer; /** - * Beans that support customized output of JSON text to a writer shall implement this interface. + * Beans that support customized output of JSON text to a writer shall implement + * this interface. + * * @author FangYidong */ -public interface JSONStreamAware { - /** - * write JSON string to out. - */ - void writeJSONString(Writer out) throws IOException; +public interface JSONStreamAware +{ + /** + * write JSON string to out. + */ + void writeJSONString(Writer out) throws IOException; }