Uses of Class
org.norvelle.textcite.model.Category

Packages that use Category
org.norvelle.textcite.gui.dialog   
org.norvelle.textcite.model This package contains the classes used for the TextCite data model. 
org.norvelle.textcite.model.filter   
 

Uses of Category in org.norvelle.textcite.gui.dialog
 

Constructors in org.norvelle.textcite.gui.dialog with parameters of type Category
CategoryDialog(Category cat)
          Creates new CategoryDialog for editing an existing Category
 

Uses of Category in org.norvelle.textcite.model
 

Methods in org.norvelle.textcite.model that return types with arguments of type Category
 java.util.Iterator<Category> CitationCategoryCollection.getCategoryIterator()
           
 

Methods in org.norvelle.textcite.model with parameters of type Category
 void CitationCategoryCollection.registerCategory(Category category)
          Add a CitationCategory to the list of categories associated with the parent Citation.
 void Citation.registerCategory(Category cat)
          Add a Category to those listed as being associated with this Citation
 void CategoryTree.registerCategory(Category cat, Category parent)
          Insert a new Category into the tree, under the indicated parent node.
 void CitationCategoryCollection.unregisterCategory(Category category)
          Unlink a given category from those associated with the parent Citation.
 void Citation.unregisterCategory(Category cat)
          Remove a given Category from those associated with this Citation.
 void CategoryTree.unregisterCategory(Category cat)
          Remove a given Category from the tree.
 

Constructors in org.norvelle.textcite.model with parameters of type Category
Category(java.lang.String n, Category parent)
          The constructor calls the DefaultMutableTreeNode constructor, passing the name of the Category as the UserObject (which will also be displayed as the label)
 

Uses of Category in org.norvelle.textcite.model.filter
 

Constructors in org.norvelle.textcite.model.filter with parameters of type Category
CategoryCitationsFilter(Category matchCategory)
          The basic construct by default builds a filter that matches the given category and all children.