Package com.iiiss.gae.core.entities

Examples of com.iiiss.gae.core.entities.ColumnGae


@Repository
public class ColumnDaoGaeImpl extends ColumnDaoImpl implements ColumnDao {

  public Column insert(String name, Column parent) {
    ColumnGae columnGae = (ColumnGae) this.insert(name);
    columnGae.setParent(parent);
    columnGae.setParentId(parent.getId());
    parent.getChildren().add(columnGae);
    return columnGae;
  }
View Full Code Here

TOP

Related Classes of com.iiiss.gae.core.entities.ColumnGae

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.