158159160161162163164165166167
} /** Write out a JSON value - pass a JSON Object to get legal exchangeable JSON */ public static void write(IndentedWriter output, JsonValue jValue) { JsonWriter w = new JsonWriter(output) ; w.startOutput() ; jValue.visit(w) ; w.finishOutput() ; }
60616263646566676869
} @Override public void output(IndentedWriter out) { JsonWriter w = new JsonWriter(out) ; w.startOutput() ; this.visit(w) ; w.finishOutput() ; }
162163164165166167168169170171
164165166167168169170171172173