Package org.objectweb.speedo.pobjects.collection.serialization

Examples of org.objectweb.speedo.pobjects.collection.serialization.Professor


        pm.close();
    }
   
    public void testSerializeWithCollection() {
        PersistenceManager pm = pmf.getPersistenceManager();
        Professor prof = new Professor("prof");
        Student s1 = new Student(1);
        Student s2 = new Student(2);
        Student s3 = new Student(3);
        Collection col = new ArrayList();
        col.add(s1);
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.pobjects.collection.serialization.Professor

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.