Package test.cayenne

Examples of test.cayenne.T1


  public static void main(String[] args) {

    ServerRuntime cayenneRuntime = new ServerRuntime("cayenne-d1.xml");
    ObjectContext context = cayenneRuntime.getContext();

    T1 t1 = context.newObject(T1.class);
    t1.setName("Root");
    context.commitChanges();

    warmup(t1);
    linearAll(t1);
  }
View Full Code Here

TOP

Related Classes of test.cayenne.T1

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.