WebMan: A Basic RefEntry Servlet | ||
---|---|---|
<<< Previous | Next >>> |
class RefEntry {RefEntry(File infile, File outfile, Properties xslt);int compareTo(Object other);String getID();HashSet getKeys(HashSet ignore);String getManVolNum();String getRefName();String getRefPurpose();String getXHTML();}
RefEntry classes hold meta-information about RefEntry documents, enabling access by other classes.
The RefEntry constructor takes an infile XML RefEntry input file, an outfile filename in which to store the XHTML output, and a Properties object specifying where the stylesheets for transformation are stored.
RefEntry class "friendly" (package private) methods provide access to various data used by the servlet, and makes it possible to sort groups of RefEntry objects.
Allows sorting of lists of RefEntry objects.
Returns a string of the form refname-manvolnum.
Returns a set of keys on which to index the RefEntry.
Returns the section name for the document.
Returns the name of the item referenced.
Returns the purpose of the item referenced.
Returns the page as an XHTML document division. Note that this is not an entire XHTML document, but only the core of the page.
<<< Previous | Home | Next >>> |
RefEntry Servlet Design | Up | RefEntryBackEnd |