Package org.mau.model

Examples of org.mau.model.Person


public class FillData {
  /**
   * A method to fill arbitrary data into the database
   */
  public static void Fill() {
    List<Person> list = Arrays.asList(new Person("A", 20), new Person("B", 30), new Person("C", 40));
    EntityManager em = ManageHuman.get();
    em.getTransaction().begin();
    for (Person p : list) {
      em.persist(p);
    }
View Full Code Here

TOP

Related Classes of org.mau.model.Person

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.