Package org.structr.core.entity

Examples of org.structr.core.entity.Person


   
    App app = StructrApp.getInstance();

    try (final Tx tx = app.tx()) {

      Person chrisi = app.create(Person.class, "chrisi");
      Person axel   = app.create(Person.class, "axel");
     
      chrisi.setProperty(Person.name, "chrisi2");

      tx.success();
View Full Code Here

TOP

Related Classes of org.structr.core.entity.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.