Package tvbrowser.extras.common

Examples of tvbrowser.extras.common.ReminderConfiguration


   * unsorted list of blacklisted (non-favorite) programs
   */
  private ArrayList<Program> mBlackList;

  public Favorite() {
    mReminderConfiguration = new ReminderConfiguration(FavoritesPlugin.getInstance().isAutoSelectingReminder() ? new String[] {ReminderConfiguration.REMINDER_DEFAULT} : new String[0]);
    mLimitationConfiguration = new LimitationConfiguration();
    mPrograms = new ArrayList<Program>(0);
    mNewPrograms = new ArrayList<Program>(0);
    mRemovedPrograms = new HashMap<String,Integer>(0);
    mRemovedBlacklistPrograms = new ArrayList<Program>(0);
View Full Code Here


  public Favorite(ObjectInputStream in) throws IOException, ClassNotFoundException {
    this();
    int version = in.readInt()// version
    mName = (String)in.readObject();
    mReminderConfiguration = new ReminderConfiguration(in);
    mLimitationConfiguration = new LimitationConfiguration(in);
    mRemindAfterDownload = in.readBoolean();

    int exclSize = in.readInt();
    if (exclSize > 0) {
View Full Code Here

TOP

Related Classes of tvbrowser.extras.common.ReminderConfiguration

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.