Package models

Examples of models.AnotherEntity


  if(parents == null){
      parents = new ArrayList<AnotherEntity>();
  }
  if (parents.size() < 5) {
      for (Integer i = 0; i < 5; i++) {
    AnotherEntity parent = new AnotherEntity();
    parent.save();
    parent.prop = "parent " + parent.id.toString();
    parent.save();
    parents.add(parent);
      }
  }
        render(entity, parents);
    }
View Full Code Here

TOP

Related Classes of models.AnotherEntity

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.