Package com.rometools.opml.feed.opml

Examples of com.rometools.opml.feed.opml.Attribute


  private Outline buildSubscriptionOutline(FeedSubscription sub) {
    Outline outline = new Outline();
    outline.setText(sub.getTitle());
    outline.setTitle(sub.getTitle());
    outline.setType("rss");
    outline.getAttributes().add(new Attribute("xmlUrl", sub.getFeed().getUrl()));
    if (sub.getFeed().getLink() != null) {
      outline.getAttributes().add(new Attribute("htmlUrl", sub.getFeed().getLink()));
    }
    return outline;
  }
View Full Code Here

TOP

Related Classes of com.rometools.opml.feed.opml.Attribute

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.