Package org.jboss.serial.objectmetamodel.datatest

Examples of org.jboss.serial.objectmetamodel.datatest.ClassWithPrivateWriteAndRead


    public void testWithPrivateWriteAndRead() throws Exception
    {
        DataContainer container = new DataContainer(true);
        ObjectOutput out = container.getOutput();
        out.writeObject(new ClassWithPrivateWriteAndRead());
        ObjectInput input = container.getInput();
        Object newobj = input.readObject();
    }
View Full Code Here

TOP

Related Classes of org.jboss.serial.objectmetamodel.datatest.ClassWithPrivateWriteAndRead

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.