Package org.dmlite.model.action

Examples of org.dmlite.model.action.AddAction


   * @return <code>true</code> if the entity is added
   * @throws dmLite
   *             action exception if there is a problem
   */
  public boolean add(T entity) throws ActionException {
    EntitiesAction entitiesAddAction = new AddAction();
    entitiesAddAction.setEntities(this);
    entitiesAddAction.setEntity(entity);
    try {
      if (entity == null) {
        return false;
      }

View Full Code Here

TOP

Related Classes of org.dmlite.model.action.AddAction

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.