4445464748495051
* @param output The data output to write the object * data to. */ public void write(Object dataObject, OutputStream output) throws IOException { TestWrapper wrapper = new TestWrapper(dataObject); super.write(wrapper, output); }
* @param output The data output to write the object * data to. */ public void write(Object dataObject, OutputStream output, int version) throws IOException { TestWrapper wrapper = new TestWrapper(dataObject); super.write(wrapper, output, version); }