Package com.substanceofcode.rssreader.businessentities

Examples of com.substanceofcode.rssreader.businessentities.CompatibilityRssFeed1


            }
            bms = bms.substring(pos+1);
            if(part.length()>0) {
              RssStoreInfo rsi = null;
              //#ifdef DCOMPATIBILITY1
              RssFeed bm1 = new CompatibilityRssFeed1( part );
              RssItunesFeed bm = new RssItunesFeed( bm1 );
              //#elifdef DCOMPATIBILITY2
              RssFeed bm2 = new CompatibilityRssFeed2( part );
              RssItunesFeed bm = new RssItunesFeed( bm2 );
              //#elifdef DCOMPATIBILITY3
View Full Code Here


      StringBuffer bookmarks)
  throws Exception {
    //#ifdef DCOMPATIBILITY1
    final RssItunesFeed rss =
      (RssItunesFeed)m_rssFeeds.get( name );
    CompatibilityRssFeed1 rss1 = new CompatibilityRssFeed1(rss);
    //#ifdef DTEST
    String prevStore = rss1.getStoreString( true );
    RssItunesFeed nrss = RssItunesFeed.deserialize( true, prevStore );
    if (!rss1.equals(nrss)) {
      //#ifdef DLOGGING
      logger.severe("itunes store stings not backwards compatible i=" + i);
      //#endif
    }
    long beginStore = System.currentTimeMillis();
    //#endif
    bookmarks.append(rss1.getStoreString(true));
    //#elifdef DCOMPATIBILITY2
    final RssItunesFeed rss =
      (RssItunesFeed)m_rssFeeds.get( name );
    CompatibilityRssFeed2 rss2 = new CompatibilityRssFeed2(rss);
    final String prevStore = rss2.getStoreString(true);
View Full Code Here

TOP

Related Classes of com.substanceofcode.rssreader.businessentities.CompatibilityRssFeed1

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.