Package org.jboss.test.remoting.marshall.dynamic.remote

Examples of org.jboss.test.remoting.marshall.dynamic.remote.TestWrapper


    * @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);
   }
View Full Code Here


    * @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);
   }
View Full Code Here

    * @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);
   }
View Full Code Here

    * @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);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.remoting.marshall.dynamic.remote.TestWrapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.