Uses of Interface
net.sourceforge.java.util.gui.jface.viewers.ITreeElement

Packages that use ITreeElement
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.watchestree Contains all the classes composing the NewsFeedWatchesTree ui component. 
net.sourceforge.java.feednread.frontend.dialog Provides a collection of dialogs used in the application context. 
net.sourceforge.java.util.gui.jface.viewers Provides additional classes and interfaces for the JFace viewer framework which itself supports model-based content adapters for SWT widgets. 
 

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

Classes in net.sourceforge.java.feednread.backend.model.favoritestree that implement ITreeElement
 class Category
           Category represents a hierarchical structure for Favorite objects, i.e.
 class Favorite
           Favorite represents a NewsFeed bookmark in the NewsFeedFavoritesTree component.
 

Methods in net.sourceforge.java.feednread.backend.model.favoritestree with parameters of type ITreeElement
private  boolean Category.isUnread(ITreeElement element)
           Returns true if at least one NewsFeed related to a Favorite in the specified ITreeElement holds an unread news.
 int Category.getUnreadCount(ITreeElement element)
           Returns the number of unread news in the NewsFeeds related to the specified ITreeElement.
 

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

Classes in net.sourceforge.java.feednread.backend.model.watchestree that implement ITreeElement
 class Watch
           Represents a NewsFeedWatch tree element which can be organized in WatchFolder structures.
 class WatchFolder
           Logical folder structure to hold and organize Watch elements.
 

Methods in net.sourceforge.java.feednread.backend.model.watchestree with parameters of type ITreeElement
private  boolean WatchFolder.isUnread(ITreeElement element)
           Returns true if at least one NewsFeed related to a Watch in the specified ITreeElement holds an unread news.
 int WatchFolder.getUnreadCount(ITreeElement element)
           Returns the number of unread news in the NewsFeeds related to the specified ITreeElement.
 

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

Methods in net.sourceforge.java.feednread.frontend.components.favoritestree with parameters of type ITreeElement
 void NewsFeedFavoritesTree.showElement(ITreeElement element)
           Shows the specified element by making sure that it's visible in the favorites tree.
 void NewsFeedFavoritesTree.expand(ITreeElement element)
           Expands the specified ITreeElement.
 

Uses of ITreeElement in net.sourceforge.java.feednread.frontend.components.watchestree
 

Methods in net.sourceforge.java.feednread.frontend.components.watchestree with parameters of type ITreeElement
 void NewsFeedWatchesTree.show(ITreeElement element)
           Shows the specified element by making sure it is visible in this NewsFeedWatchesTree.
 void NewsFeedWatchesTree.expand(ITreeElement element)
           Expands the specified ITreeElement.
 

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

Fields in net.sourceforge.java.feednread.frontend.dialog declared as ITreeElement
private  ITreeElement RemoveTreeElementDialog.elementToRemove
           The questionable ITreeElement that is about to be removed
 

Constructors in net.sourceforge.java.feednread.frontend.dialog with parameters of type ITreeElement
RemoveTreeElementDialog(Shell parentShell, ITreeElement elementToRemove, String dialogTitle)
           Creates a new RemoveTreeElementDialog using the specified dialog settings.
 

Uses of ITreeElement in net.sourceforge.java.util.gui.jface.viewers
 

Subinterfaces of ITreeElement in net.sourceforge.java.util.gui.jface.viewers
 interface IMutableTreeElement
           Basic interface to modify tree structures.
 

Classes in net.sourceforge.java.util.gui.jface.viewers that implement ITreeElement
 class MutableTreeElement
           Default IMutableTreeElement implementation which can be used to create and organize hierarchical structures in JFace TreeViewer instances.
 

Fields in net.sourceforge.java.util.gui.jface.viewers declared as ITreeElement
private  ITreeElement NodeViewerFilter.excludedElement
           The ITreeElement that is always filtered out
private static ITreeElement[] MutableTreeElement.EMPTY_ELEMENTS
           A predefined empty elements array if a MutableTreeElement does not hold any elements.
 

Methods in net.sourceforge.java.util.gui.jface.viewers that return ITreeElement
 ITreeElement[] MutableTreeElement.getElements()
           Returns the elements in this MutableTreeElement.
 ITreeElement MutableTreeElement.getElementAt(int index)
           Returns the IMutableTreeElement at the specified index.
 ITreeElement MutableTreeElement.getParent()
           Returns the parent of this MutableTreeElement.
 ITreeElement[] MutableTreeElement.collectLeafs()
           Recursively collects all leafs, i.e.
 ITreeElement[] ITreeElement.getElements()
           Returns the elements in the ITreeElement.
 ITreeElement ITreeElement.getElementAt(int index)
           Returns the ITreeElement at the specified index.
 ITreeElement ITreeElement.getParent()
           Returns the parent of the ITreeElement
 

Methods in net.sourceforge.java.util.gui.jface.viewers with parameters of type ITreeElement
 int MutableTreeElement.getIndex(ITreeElement element)
           Returns the index of the specified element in this MutableTreeElement.
 boolean MutableTreeElement.isSubElement(ITreeElement element)
           Returns true if the specified element is a sub element, i.e. a descendant of this MutableTreeElement.
 int ITreeElement.getIndex(ITreeElement element)
           Returns the index of the specified element in the ITreeElement.
 boolean ITreeElement.isSubElement(ITreeElement element)
           Returns true if the specified element is a sub element, i.e. a descendant of the ITreeElement.
 

Constructors in net.sourceforge.java.util.gui.jface.viewers with parameters of type ITreeElement
NodeViewerFilter(ITreeElement excludedElement)
           Creates a new NodeViewerFilter instance.