Uses of Class
net.sourceforge.java.feednread.backend.model.watchestree.Watch

Packages that use Watch
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.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.tabbar Contains all the interfaces and classes composing the NewsFeedTabBar ui component. 
net.sourceforge.java.feednread.frontend.event.action Provides a collection of Actions handling events based on user actions.  
net.sourceforge.java.feednread.frontend.wizard Provides classes for wizards used in the application context. 
 

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

Methods in net.sourceforge.java.feednread.backend.exporter with parameters of type Watch
protected  void NewsFeedWatchesTreeExport.createWatch(Watch watch, Element folderElem)
           Creates a watch Element from the specified Watch inside the denoted folderElem.
protected  void NewsFeedWatchesTreeExport.createWatchSettings(Watch watch, Element watchElem)
           Creates the watch settings Element for the specified Watch inside the denoted watchElem.
 

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

Methods in net.sourceforge.java.feednread.backend.importer with parameters of type Watch
protected  void NewsFeedWatchesTreeImport.importWatchSettings(Element settingsElem, Watch watch)
           Imports the WatchSettings specified by the given settingsElem and associates it to the given Watch.
protected  void NewsFeedWatchesTreeImport.importWatchedElements(Element watchedElementsElem, Watch watch)
           Imports the watched IMutableTreeElements specified by the given watchElementsElem and associates them to the given Watch.
 

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

Methods in net.sourceforge.java.feednread.backend.model.favoritestree that return Watch
 Watch[] Favorite.getRegisteredWatches()
           Gets all Watches that this Favorite is registered at, i.e. observed by.
 

Methods in net.sourceforge.java.feednread.backend.model.favoritestree with parameters of type Watch
 void Favorite.registerWatch(Watch watch)
           Registers the specified Watch, i.e. notifies this Favorite that it is observed by the specified Watch.
 void Favorite.unregisterWatch(Watch watch)
           Unegisters the specified Watch, i.e. notifies this Favorite that it is no longer observed by the specified Watch.
 

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

Methods in net.sourceforge.java.feednread.backend.model.watchestree that return Watch
 Watch[] WatchFolder.collectWatches()
           Recursively collects all Watch elements starting at this WatchFolder.
 

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

Fields in net.sourceforge.java.feednread.frontend.components.tabbar declared as Watch
private  Watch NewsFeedTabItemData.watch
           The Watch related to this NewsFeedTabItemData
 

Methods in net.sourceforge.java.feednread.frontend.components.tabbar that return Watch
 Watch NewsFeedTabItemData.getWatch()
           Gets the Watch displayed in the tab associated with this NewsFeedTabItemData object or null if no Watch displayed in the tab.
 

Methods in net.sourceforge.java.feednread.frontend.components.tabbar with parameters of type Watch
 void TabManager.addTab(Watch watch)
           Adds a tab that displays the specified Watch.
 boolean TabManager.isOpen(Watch watch)
           Verifies if the specified Watch is open in a tab.
 CTabItem TabManager.getTab(Watch watch)
           Gets the CTabItem that displays the specified Watch.
private  void TabManager.createNewsFeedTab(Watch watch)
           Creates a new tab that displays the specified Watch.
private  void TabManager.updateNewsFeedTab(Watch watch)
           Updates a tab to the NewsFeed held by the specified Watch.
 void NewsFeedTabBar.addTab(Watch watch)
           Adds a tab that displays the specified Watch.
 boolean NewsFeedTabBar.isOpen(Watch watch)
           Verifies if the specified Watch is open in a tab.
 CTabItem NewsFeedTabBar.getTab(Watch watch)
           Gets the CTabItem matching the specified Watch null if no such tab is currently open showing the specified Watch.
 

Constructors in net.sourceforge.java.feednread.frontend.components.tabbar with parameters of type Watch
NewsFeedTabItemData(MainApplicationWindow mainWindow, CTabItem item, NewsFeedView newsView, Watch watch)
           Creates a new NewsFeedTabItemData instance.
 

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

Methods in net.sourceforge.java.feednread.frontend.event.action with parameters of type Watch
private  void UpdateTreeElementAction.update(Watch watch)
           Updates the specified Watch.
private  void TreeElementPropertiesAction.updateProperties(Watch selectedWatch)
           Updates the properties of the specified Watch.
private  void MarkTreeElementReadAction.markRead(Watch watch, NewsFeedTabBar tabBar)
           Marks the specified Watch as read.
 

Uses of Watch in net.sourceforge.java.feednread.frontend.wizard
 

Fields in net.sourceforge.java.feednread.frontend.wizard declared as Watch
private  Watch WatchWizard.watch
           The Watch to edit; null if a new Watch has to be created
 

Methods in net.sourceforge.java.feednread.frontend.wizard that return Watch
 Watch WatchWizard.getWatch()
           Gets the Watch created or edited in this WatchWizard.
 

Constructors in net.sourceforge.java.feednread.frontend.wizard with parameters of type Watch
WatchWizard(MainApplicationWindow mainWindow, Watch watch)
           Creates a new WatchWizard instance.