/** 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() ;
}
/** Write out a JSON value to - pass a JSON Object to get legal exchangeable JSON */