Package org.jugile.daims

Source Code of org.jugile.daims.TestDB

package org.jugile.daims;

import org.jugile.proto2.domain.Domain;
import org.jugile.util.Jugile;

public class TestDB extends Jugile {

  public static void main(String args[]) throws Exception {
    Domain d = Domain.getDomain();
    d.createPerson().setName("name1");
    d.createPerson().setName("name2");
    d.commit();
  }
 
}
TOP

Related Classes of org.jugile.daims.TestDB

TOP
Copyright © 2018 www.massapi.com. 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.