Package de.nava.informa.impl.hibernate

Examples of de.nava.informa.impl.hibernate.Item


   * @throws PersistenceManagerException in case of any problems.
   */
  public ItemIF createItem(ChannelIF channel, String title)
    throws PersistenceManagerException {

    final ItemIF item = new Item(channel, title, null, null);

    saveCreatedItem(channel, item);

    return item;
  }
View Full Code Here


   */
  public ItemIF createItem(ChannelIF channel, ItemIF ethalon)
    throws PersistenceManagerException {

    // Create item by copying another's properties and save
    final ItemIF item = new Item(channel, null, null, null);
    InformaUtils.copyItemProperties(ethalon, item);

    saveCreatedItem(channel, item);

    return item;
View Full Code Here

TOP

Related Classes of de.nava.informa.impl.hibernate.Item

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.