Package uk.ac.osswatch.simal.model

Examples of uk.ac.osswatch.simal.model.IFeed


      config.append("<script type=\"text/javascript\">\n");
      config.append("function LoadDynamicFeedControl() {");
      config.append("var feeds = [");
     
      Iterator<IFeed> feedItr = project.getFeeds().iterator();
      IFeed feed = null;
      while (feedItr.hasNext()) {
        if (feed != null) {
          config.append(",");
        }
        feed = feedItr.next();
        config.append("{title: '" + feed.getTitle() + "',");
        config.append("url: '" + feed.getFeedURL() + "'");
        config.append("}");
      }
      config.append("];");
     
      config.append("var options = {");
View Full Code Here

TOP

Related Classes of uk.ac.osswatch.simal.model.IFeed

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.