Examples of PodcastAdderWizard


Examples of org.jampa.gui.wizard.podcastadder.PodcastAdderWizard

  public NewPodcastAction(Shell shell) {
    _shell = shell;
  }
 
  public void run() {
    PodcastAdderWizard wizard = new PodcastAdderWizard();
   
    WizardDialog wizardDialog = new WizardDialog(_shell, wizard);
    wizardDialog.setPageSize(500, 100);
   
    if (wizardDialog.open() == Dialog.OK) {
      Log.getInstance(NewPodcastAction.class).debug("Adding podcast " + wizard.getPodcastName() + " (" + wizard.getPodcastUrl() + ")."); //$NON-NLS-1$ //$NON-NLS-2$
      Controller.getInstance().getPlaylistController().addPodcast(wizard.getPodcastName(), wizard.getPodcastUrl());
    }
  }
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.