Package org.infoglue.cms.entities.management.impl.simple

Examples of org.infoglue.cms.entities.management.impl.simple.CategoryImpl


  /**
   * Creates a Category from a CategoryVO
   */
  private Category create(CategoryVO c, Database db) throws SystemException
  {
    CategoryImpl impl = new CategoryImpl(c);
    return ((CategoryImpl)createEntity(impl));
  }
View Full Code Here


  /**
   * Creates a Category from a CategoryVO
   */
  private CategoryVO create(CategoryVO c) throws SystemException
  {
    CategoryImpl impl = new CategoryImpl(c);
    return ((CategoryImpl)createEntity(impl)).getValueObject();
  }
View Full Code Here

TOP

Related Classes of org.infoglue.cms.entities.management.impl.simple.CategoryImpl

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.