Package net.sourceforge.seriesdownloader.controller.showsearch

Examples of net.sourceforge.seriesdownloader.controller.showsearch.ShowInfoFinder


      Show show = WatchListController.findShowByTVRageId(editId);
      if (!Util.isEmpty(params.get("episode"))) {
        String episode = params.get("episode");
        show.setNextEpisode(new Episode(episode, "Unknown"));
        show.setNextAirDate(null);
        new ShowInfoFinder(show).start();
      }
      return true;
    }
    return false;
  }
View Full Code Here


  public static boolean addShow(Show show) {
    if (getInstance().add(show)) {
      Main.addStatus("Trying to download extra data for " + show.getLabel(), true);
      getInstance().actionPerformed(new ActionEvent(show, WatchList.NEW_SHOW_ADDED, "New Show Added"));
      new ShowInfoFinder(show).start();
      return true;
    } else {
      Main.addStatus(show.getLabel() + " is already in your list.", true);
      return false;
    }
View Full Code Here

        case 3:
          changed.setNextAirDate(null);
          changed.setNextEpisode(new Episode((String) value, null));
          break;
      }
      new ShowInfoFinder(changed).start();

      if (column != 0)
        super.setValueAt(value, row, column);
    }
View Full Code Here

    } else if (e.getSource() == openBrowser) {
      Util.openURL(((Show) target.getValueAt(lastClickedRow, 0)).getTvrageUrl());
    } else if (e.getSource() == renewInfo) {
      Show show = (Show) target.getValueAt(lastClickedRow, 0);
      show.setNextEpisode(null);
      new ShowInfoFinder(show).start();
    } else if (e.getSource() == updateAll) {
      ShowUpdater.updateAllShows();
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.seriesdownloader.controller.showsearch.ShowInfoFinder

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.