Examples of RssItunesItem


Examples of com.substanceofcode.rssreader.businessentities.RssItunesItem

      super.setTitle( feed.getName() );
      final boolean markUnreadItems = m_appSettings.getMarkUnreadItems();
      final Vector vitems = feed.getItems();
      final int itemLen = vitems.size();
      for(int i=0; i < itemLen; i++){
        RssItunesItem r = (RssItunesItem)vitems.elementAt(i);
        String text = r.getTitle();
        if (text.length() == 0) {
          text = getItemDescription(r.getDescription());
        }
        if (markUnreadItems) {
          if (r.isUnreadItem()) {
            super.append( text, m_unreadImage );
          } else {
            super.append( text, m_readImage );
          }
        } else {
View Full Code Here

Examples of com.substanceofcode.rssreader.businessentities.RssItunesItem

//@    }
//@    if (m_convXmlEnts) {
//@      m_author = StringUtil.removeHtml(m_author);
//@    }
    //#endif
    return new RssItunesItem(title, link, desc, date,
              enclosure, unreadItem,
          true,
          m_author,
          m_subtitle,
          m_summary,
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.