Package models

Examples of models.PersonLongAutoIDExtendedAbstract


import siena.SienaException;


public class Inherit extends Controller {
  public static void index() {
    PersonLongAutoIDExtendedAbstract bob =
      new PersonLongAutoIDExtendedAbstract("Bob", "Doe", "Oklahoma", 1, "the_dog1");
    bob.save();
   
    // fetches it to be sure it has been saved
    bob =
      Model.getByKey(PersonLongAutoIDExtendedAbstract.class, bob.id);
   
View Full Code Here

TOP

Related Classes of models.PersonLongAutoIDExtendedAbstract

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.