Package org.objectweb.speedo.pobjects.inheritance.query

Examples of org.objectweb.speedo.pobjects.inheritance.query.GroupModerator


                GroupUser u = new GroupUser("user_ml" + i + "_u" + j);
                users.add(u);
            }
            Collection moderators = ml.getModerators();
            for(int j=0; j<NB_USER_PER_GROUP; j++) {
                GroupModerator gm = new GroupModerator("moderator_ml" + i,  "mod" + j);
                moderators.add(gm);
            }
            pm.makePersistent(ml);
        }
       
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.pobjects.inheritance.query.GroupModerator

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.