Package org.jampa.model.podcasts

Examples of org.jampa.model.podcasts.Podcast.download()


  }
 
  public void addPodcast(String name, String url) {
    Podcast podcast = new Podcast(name, "", url, "");
    podcast.setPosition(_podcastItems.size());
    podcast.download();
    podcast.parseData();
    _podcastItems.put(podcast.getName(), podcast);
   
    Controller.getInstance().getEventController().firePlaylistChange(EventConstants.EVT_ADD_PLAYLIST, null, name);
  }
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.