Uses of Class
eTextReader.clientInterface.Criteria

Packages that use Criteria
eTextReader   
eTextReader.clientInterface   
 

Uses of Criteria in eTextReader
 

Methods in eTextReader with parameters of type Criteria
private  void Browser.loadBookmarks(Criteria select, javax.swing.JMenu addMenu, java.lang.String actionCommand, java.util.Hashtable bookmarks, java.util.Hashtable pages, java.util.Hashtable keys)
          loads a particular set of bookmarks based on the criteria specified, which in particular specify the type of bookmark and an author, except for global bookmarks
private  void DiscussionWindow.loadDiscussionMessages(NotationEvent start, Criteria select)
          Gets all messages in current discussion from the database and stores them in a Vector.
 

Uses of Criteria in eTextReader.clientInterface
 

Fields in eTextReader.clientInterface declared as Criteria
static Criteria Criteria.RETRIEVE_ALL
          Serves as a marker to denote that all fields should be downloaded for a notation
 

Methods in eTextReader.clientInterface that return Criteria
static Criteria DBClient.buildCriteria(java.lang.Object[] args)
          Builds a Criteria object out of an array of pairs of objects
 

Methods in eTextReader.clientInterface with parameters of type Criteria
 void NotationClient.deleteNotation(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria)
          Delete an existing notation.
 void DBClient.deleteNotation(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria)
           
 int NotationClient.requestNotationCount(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria)
          Query the server for a count of the number of notations on a document.
 int DBClient.requestNotationCount(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria)
           
 java.util.Vector NotationClient.requestNotationDownload(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria, Criteria retrieveCriteria)
          Send a request to the server to download all notations that match the given criteria, retrieving only the fields indicated by retrieveCriteria.
 java.util.Vector<Notation> DBClient.requestNotationDownload(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria, Criteria retrieveCriteria)
           
 int NotationClient.updateNotation(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria, Notation theNotation)
          Update an existing notation.
 int DBClient.updateNotation(java.lang.String userName, java.lang.String theTable, Criteria selectCriteria, Notation theNotation)