(Writer w, Object obj)
| 2061 | } |
| 2062 | |
| 2063 | static public void formatAesthetic(Writer w, Object obj) throws IOException{ |
| 2064 | if(obj == null) |
| 2065 | w.write("null"); |
| 2066 | else |
| 2067 | w.write(obj.toString()); |
| 2068 | } |
| 2069 | |
| 2070 | static public void formatStandard(Writer w, Object obj) throws IOException{ |
| 2071 | if(obj == null) |