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

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

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

Constructors in org.norvelle.textcite.gui.dialog with parameters of type Book
BookDialog(Book book)
          This version of the constructor builds a dialog that edits an already-existing Book
BookOutlineDialog(Book book, ValueListener listener)
          Creates new form CategorySelectionDialog
CitationDialog(Book book)
          Creates new form CitationDialog, using the given Book to fill the Book/Author field
 

Uses of Book in org.norvelle.textcite.gui.outlook_bar
 

Constructors in org.norvelle.textcite.gui.outlook_bar with parameters of type Book
AuthorPubTreeNode(Book book, AuthorPubTreeNode parent, AuthorPubTreeModel model)
          Calling with an Author produces a node that represents an Author in the tree
 

Uses of Book in org.norvelle.textcite.model
 

Fields in org.norvelle.textcite.model with type parameters of type Book
 java.util.HashMap<java.lang.Integer,Book> BookCollection.books
          We use a HashMap here to maintain a reference to all Books by their IDs
 

Methods in org.norvelle.textcite.model that return Book
 Book Citation.getBook()
           
 Book BookCollection.getBookByName(java.lang.String name)
           
 Book BookOutlineTree.getParentBook()
           
 

Methods in org.norvelle.textcite.model that return types with arguments of type Book
 java.util.HashMap<java.lang.Integer,Book> Author.getBooks()
           
 

Methods in org.norvelle.textcite.model with parameters of type Book
 void BookCollection.registerBook(Book book)
          Add a Book object to the list.
 void Author.registerBook(Book book)
          Marks the given Book object as being by the current Author
 void Citation.setBook(Book book)
          The setter method for modifying the Book associated with this Citation.
 void BookOutlineTree.setParentBook(Book parentBook)
           
 void BookCollection.unregisterBook(Book book)
          Eliminate the given Book object from the list.
 void Author.unregisterBook(Book book)
          Dissasociates a Book object from this Author.
 

Constructors in org.norvelle.textcite.model with parameters of type Book
BookOutlineTree(Book parentBook)
          Default constructor.
Citation(Book book)
          The object constructor.
Citation(Book book, java.lang.String text, java.lang.String summary, java.lang.String pageRef)
          The object constructor that also takes a text selection and a summary.
 

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

Constructors in org.norvelle.textcite.model.filter with parameters of type Book
BookCitationsFilter(Book matchBook)