Package org.jampa.gui.actions.podcast

Examples of org.jampa.gui.actions.podcast.OpenAndPlayPodcastAction


    openAndPlayItem.setText(Messages.getString("PodcastListView.MenuOpenAndPlay")); //$NON-NLS-1$
    openAndPlayItem.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(SelectionEvent e) {
        ISelection selection = viewer.getSelection();
        Object obj = ((IStructuredSelection)selection).getFirstElement();
        new OpenAndPlayPodcastAction(((Podcast) obj).getName()).run();
      }
    });
   
    new MenuItem(_viewMenu, SWT.SEPARATOR);
   
View Full Code Here

TOP

Related Classes of org.jampa.gui.actions.podcast.OpenAndPlayPodcastAction

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.