Package org.rssowl.core.model.types

Examples of org.rssowl.core.model.types.ICategory


    else if (entity instanceof IAttachment) {
      IAttachment attachment = (IAttachment) entity;
      modelEvent = new AttachmentEvent(attachment, root);
    }
    else if (entity instanceof ICategory) {
      ICategory category = (ICategory) entity;
      modelEvent = new CategoryEvent(category, root);
    }
    else if (entity instanceof IFeed) {
      IFeed feed = (IFeed) entity;
      modelEvent = new FeedEvent(feed, root);
View Full Code Here


 
  /*
   * @see org.rssowl.core.model.dao.IModelDAO#deleteCategory(org.rssowl.core.model.reference.CategoryReference)
   */
  public final void deleteCategory(CategoryReference reference) throws PersistenceException {
    ICategory category = loadCategory(reference.getId());
    CategoryEvent event = new CategoryEvent(category, true);
    deleteEntityAndFireEvents(event);
  }
View Full Code Here

      attachment.getType();
      attachment.getUrl();
    }

    else if (type instanceof ICategory) {
      ICategory category = (ICategory) type;
      category.getDomain();
      category.getName();
    }

    else if (type instanceof ISource) {
      ISource source = (ISource) type;
      source.getName();
View Full Code Here

TOP

Related Classes of org.rssowl.core.model.types.ICategory

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.