Uses of Class
net.sourceforge.java.feednread.backend.model.favoritestree.Favorite

Packages that use Favorite
net.sourceforge.java.feednread.backend.exporter Contains classes for exporting hierarchical structures embedded in the NewsFeedFavoritesTree and NewsFeedWatchesTree to the OPML format.  
net.sourceforge.java.feednread.backend.importer Contains classes for importing hierarchical structures embedded in OPML Documents into the NewsFeedFavoritesTree resp.  
net.sourceforge.java.feednread.backend.jobs Contains a collection of Jobs to concurrently perform application specific tasks in the JobManager execution context. 
net.sourceforge.java.feednread.backend.model.favoritestree Provides the data model classes for the NewsFeedFavoritesTree ui component. 
net.sourceforge.java.feednread.backend.model.watchestree Provides the data model classes for the NewsFeedWatchesTree ui component. 
net.sourceforge.java.feednread.frontend.components.favoritestree Contains all the classes composing the NewsFeedFavoritesTree ui component. 
net.sourceforge.java.feednread.frontend.components.tabbar Contains all the interfaces and classes composing the NewsFeedTabBar ui component. 
net.sourceforge.java.feednread.frontend.dialog Provides a collection of dialogs used in the application context. 
net.sourceforge.java.feednread.frontend.event.action Provides a collection of Actions handling events based on user actions.  
 

Uses of Favorite in net.sourceforge.java.feednread.backend.exporter
 

Methods in net.sourceforge.java.feednread.backend.exporter with parameters of type Favorite
protected  void OPMLExport.exportFavorite(Favorite favorite, Element categoryOutline)
           Exports the specified Favorite to the specified categoryOutline Element.
protected  void NewsFeedFavoritesTreeOPMLExport.exportFavorite(Favorite favorite, Element categoryOutline)
           Exports the specified Favorite to the specified categoryOutline Element.
 

Uses of Favorite in net.sourceforge.java.feednread.backend.importer
 

Methods in net.sourceforge.java.feednread.backend.importer with parameters of type Favorite
private  void NewsFeedFavoritesTreeOPMLImport.synchronizeWithArchive(Favorite favorite)
           
private  void NewsFeedFavoritesTreeOPMLImport.importExtendedFavoriteSettings(Element outline, Favorite favorite)
           Imports the extended settings from the specified outline Element into the specified Favorite.
private  void NewsFeedFavoritesTreeOPMLImport.scheduleFavoriteUpdate(Favorite favorite)
           Creates and schedules a ScheduledJob for the specified Favorite.
 

Uses of Favorite in net.sourceforge.java.feednread.backend.jobs
 

Fields in net.sourceforge.java.feednread.backend.jobs declared as Favorite
private  Favorite[] NewsFeedUpdateManagerJob.newsFeedFavorites
           
protected  Favorite NewsFeedParserJob.favorite
           The Favorite to parse the NewsFeed for
private  Favorite NewsFeedAggregatorJob.newsFeedFavorite
           The Favorite to aggregate
private  Favorite[] NewsFeedAggregationManagerJob.newsFeedFavorites
          * The Favorites to aggregate
 

Methods in net.sourceforge.java.feednread.backend.jobs that return Favorite
 Favorite NewsFeedAggregatorJob.getFavorite()
           Gets the newsfeed Favorite parsed/aggregated by this NewsFeedAggregatorJob
 

Methods in net.sourceforge.java.feednread.backend.jobs with parameters of type Favorite
 void NewsFeedAggregationManagerJob.spawnNewAggregator(Favorite newsFeedFavorite)
           Spawns a new NewsFeedAggregatorJob to parse/aggregate the specified newsfeed Favorite.
 

Constructors in net.sourceforge.java.feednread.backend.jobs with parameters of type Favorite
NewsFeedUpdateManagerJob(MainApplicationWindow mainWindow, Favorite[] newsFeedFavorites)
           Creates a new NewsFeedUpdateManagerJob which coordinates the update of the specified Favoritess.
NewsFeedUpdateJob(Favorite favorite, MainApplicationWindow mainWindow)
           Creates a new NewsFeedUpdateJob to update the newsfeed set in the specified Favorite.
NewsFeedParserJob(Favorite favorite, MainApplicationWindow mainWindow)
           Creates a new NewsFeedParserJob to parse the NewsFeed set by the specified Favorite.
NewsFeedAggregatorJob(Favorite newsFeedFavorite, NewsFeedAggregationManagerJob aggregationMgr, AggregatedNewsFeed newsFeed)
           Creates a new NewsFeedAggregatorJob that adds the parsed entries of the sepcified newsfeed Favorite to the specified aggregated newsFeed.
NewsFeedAggregationManagerJob(MainApplicationWindow mainWindow, Favorite[] newsFeedFavorites)
           Creates a new NewsFeedAggregationManagerJob which aggregates the specified Favorite newsfeeds into one single AggregatedNewsFeed and adds it to the NewsFeedTabBar when finished.
 

Uses of Favorite in net.sourceforge.java.feednread.backend.model.favoritestree
 

Methods in net.sourceforge.java.feednread.backend.model.favoritestree that return Favorite
 Favorite[] Category.collectFavorites()
           Recursively collects all Favorite elements starting at this Category.
 

Uses of Favorite in net.sourceforge.java.feednread.backend.model.watchestree
 

Methods in net.sourceforge.java.feednread.backend.model.watchestree that return Favorite
 Favorite[] Watch.getWatchedFavorites()
           Gets the Favorites included in this Watch, i.e. the Favorites which are watched.
 

Uses of Favorite in net.sourceforge.java.feednread.frontend.components.favoritestree
 

Fields in net.sourceforge.java.feednread.frontend.components.favoritestree declared as Favorite
private  Favorite NewsFeedFavoritesTreeLabelProvider.ImageLoader.favorite
           The Favorite to load the icon Image for.
 

Methods in net.sourceforge.java.feednread.frontend.components.favoritestree with parameters of type Favorite
private  Image NewsFeedFavoritesTreeLabelProvider.getDefaultImage(Favorite favorite)
           Gets a default Image for the specified Favorite depending on its status.
 

Constructors in net.sourceforge.java.feednread.frontend.components.favoritestree with parameters of type Favorite
NewsFeedFavoritesTreeLabelProvider.ImageLoader(Favorite favorite)
           Creates a new ImageLoader bound to the specified Favorite.
 

Uses of Favorite in net.sourceforge.java.feednread.frontend.components.tabbar
 

Methods in net.sourceforge.java.feednread.frontend.components.tabbar that return Favorite
 Favorite[] NewsFeedTabItemData.getFavorites()
           Gets the Favorite objects displayed in the tab associated with this NewsFeedTabItemData object or null if no Favorite objects displayed in the tab.
 

Methods in net.sourceforge.java.feednread.frontend.components.tabbar with parameters of type Favorite
 void TabManager.addTab(Favorite favorite)
           Adds a new tab that displays the NewsFeed held by the specified Favorite.
 void TabManager.addTab(Favorite[] favorites, AggregatedNewsFeed newsFeed)
           Adds a tab that displays the specified AggregatedNewsFeed and is bound to the specified Favorites.
 void TabManager.updateFilterTab(Favorite[] favorites, NewsFeed filteredFeed)
           Updates the filter tab with the specified filteredFeed.
private  void TabManager.createNewsFeedTab(Favorite favorite)
           Creates a new tab that displays the NewsFeed held by the specified Favorite.
private  void TabManager.createNewsFeedTab(Favorite[] favorites, AggregatedNewsFeed newsFeed)
           Creates a new tab that displays the specified AggregatedNewsFeed bound to the specified Favorites.
private  void TabManager.updateNewsFeedTab(Favorite favorite)
           Updates a tab to the NewsFeed held by the specified Favorite.
 void NewsFeedTabBar.addTab(Favorite favorite)
           Adds a new tab that displays the NewsFeed held by the specified Favorite.
 void NewsFeedTabBar.addTab(Favorite[] favorites, AggregatedNewsFeed newsFeed)
           Adds a tab that displays the specified AggregatedNewsFeed and bound to the specified Favorites.
 void NewsFeedTabBar.updateFilterTab(Favorite[] favorites, NewsFeed filteredFeed)
           Updates the filter tab with the specified filteredFeed.
 

Constructors in net.sourceforge.java.feednread.frontend.components.tabbar with parameters of type Favorite
NewsFeedTabItemData(MainApplicationWindow mainWindow, CTabItem item, NewsFeedView newsView, Favorite favorite)
           Creates a new NewsFeedTabItemData instance.
NewsFeedTabItemData(MainApplicationWindow mainWindow, CTabItem item, NewsFeedView newsView, Favorite[] favorites)
           Creates a new NewsFeedTabItemData instance.
FilterTabItemData(MainApplicationWindow mainWindow, CTabItem item, NewsFeedView newsView, Favorite[] favorites)
           Creates a new FilterTabItemData instance.
 

Uses of Favorite in net.sourceforge.java.feednread.frontend.dialog
 

Fields in net.sourceforge.java.feednread.frontend.dialog declared as Favorite
private  Favorite FavoriteInputDialog.editFavorite
           The Favorite to be edited
 

Constructors in net.sourceforge.java.feednread.frontend.dialog with parameters of type Favorite
FavoriteInputDialog(MainApplicationWindow mainWindow, Favorite editFavorite, Category parentCategory, String dialogTitle)
           Creates a new FavoriteInputDialog using the specified dialog settings.
 

Uses of Favorite in net.sourceforge.java.feednread.frontend.event.action
 

Fields in net.sourceforge.java.feednread.frontend.event.action declared as Favorite
private  Favorite AddFavoriteAction.template
           The Favorite to use as template for all creations
 

Methods in net.sourceforge.java.feednread.frontend.event.action with parameters of type Favorite
private  void UpdateTreeElementAction.update(Favorite favorite)
           Updates the specified Favorite.
private  IJob UpdateTreeElementAction.update(INameable nameable, Favorite[] favorites)
           Updates the specified list of Favorites.
private  void UpdateNewsFeedTabAction.updateTab(Favorite favorite)
           Updates the tab that display the specified Favorite.
private  IJob UpdateNewsFeedTabAction.update(INameable nameable, Favorite[] favorites)
           Updates the specified list of Favorites.
private  void TreeElementPropertiesAction.updateProperties(Favorite selectedFavorite)
           Updates the properties of the specified Favorite.
private  void TreeElementPropertiesAction.updateScheduler(Favorite favorite)
           Updates the JobManager scheduler for the specified Favorite.
private  void RemoveTreeElementAction.cancelScheduler(Favorite favorite)
           Cancels the JobManager scheduler for the specified Favorite, i.e. if an update interval for the specified Favorite is set the corresponding ScheduledJob is canceled.
private  void MarkTreeElementReadAction.markRead(Favorite favorite, NewsFeedTabBar tabBar)
           Marks the specified Favorite as read.
 void AddFavoriteAction.setTemplate(Favorite favorite)
           Sets a Favorite to use as template for subsequent Favorite creations.
 void AddFavoriteAction.getTemplate(Favorite favorite)
           Gets the Favorite that is used as template for Favorite creations.
private  void AddFavoriteAction.updateScheduler(Favorite favorite)
           Updates the JobManager scheduler for the specified Favorite.