Package org.rssowl.core.persist

Examples of org.rssowl.core.persist.NewsCounterItem.incrementStickyCounter()


        if (oldStateSticky && !newStateSticky)
          counterItem.decrementStickyCounter();

        /* News became sticky */
        else if (!oldStateSticky && newStateSticky)
          counterItem.incrementStickyCounter();

        updatedCounterItems.put(currentNews.getFeedLinkAsText(), counterItem);
      }

      for (NewsCounterItem counterItem : updatedCounterItems.values())
View Full Code Here


      if (INews.State.NEW.equals(news.getState()))
        counterItem.incrementNewCounter();

      if (news.isFlagged())
        counterItem.incrementStickyCounter();
    }

    return counterItem;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.