Implement this interface on your class to support serialization
| 28 | |
| 29 | /** Implement this interface on your class to support serialization */ |
| 30 | public static interface Writable { |
| 31 | public void write(JSONWriter writer); |
| 32 | } |
| 33 | |
| 34 | public static final int DEFAULT_INDENT = 2; |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…