Package tvbrowser.extras.favoritesplugin.core

Examples of tvbrowser.extras.favoritesplugin.core.TopicFavorite


        return new TitleFavorite(title);
      }
    } else if (mTopicRb.isSelected()) {
      String topic = mTopicTf.getText();
      if (topic != null && topic.length() > 0) {
        return new TopicFavorite(topic);
      }
    } else if (mActorsRb.isSelected()) {
      String actors = (String) mActorsCb.getSelectedItem();
      if (actors != null && actors.trim().length() > 0) {
        return new ActorsFavorite(actors);
View Full Code Here


        userObject = AdvancedFavorite.loadOldFavorite(in);
      }
      else {
        String typeID = (String)in.readObject();
        if (TopicFavorite.TYPE_ID.equals(typeID)) {
          userObject = new TopicFavorite(in);
        }
        else if (TitleFavorite.TYPE_ID.equals(typeID)) {
          userObject = new TitleFavorite(in);
        }
        else if (ActorsFavorite.TYPE_ID.equals(typeID)) {
View Full Code Here

          newFavoriteArr[i] = AdvancedFavorite.loadOldFavorite(in);
        }
        else {
          String typeID = (String)in.readObject();
          if (TopicFavorite.TYPE_ID.equals(typeID)) {
            newFavoriteArr[i] = new TopicFavorite(in);
          }
          else if (TitleFavorite.TYPE_ID.equals(typeID)) {
            newFavoriteArr[i] = new TitleFavorite(in);
          }
          else if (ActorsFavorite.TYPE_ID.equals(typeID)) {
View Full Code Here

TOP

Related Classes of tvbrowser.extras.favoritesplugin.core.TopicFavorite

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.