Open SiteSearch 4.1.1
Final

ORG.oclc.gadgets
Class SortSelect

java.lang.Object
  |
  +--ORG.oclc.gadgets.SortSelect

public class SortSelect
extends Object
implements GadgetBuilder

The SortSelect class is a gadget that builds an HTML select list of the sort keys for a database. It uses the parameters contained in a RequestManager object and the parameters for the gadget read from the configuration files to build the appropriate output. If an error occurs, an empty string("") is returned.

The parameters to the gadget are:
setSelected = true/false - to indicate the current sort keys
font = the string for the font of the text in radio buttons
separator = the string to put between the sort keys
selectsize = the size parameter for select lists
gadgetLabel = Text that precedes the select list
gadgetTrailer = Text that follows the select list

For efficiency purposes, the sort select string is generated one time for each database/gadgetName and saved in the gadget Hashtable object. Each subsequent request for the data is a table lookup to locate the appropriate string.


Constructor Summary
SortSelect()
          Constructs a SortSelect object.
 
Method Summary
 String buildit(RequestManager rMngr, String name)
          Generates a String containing the HTML for the sort select list for the currently selected database using the parameters containined in the RequestManager object and the name of the gadget.
 String toString()
          Generates a String representation of the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SortSelect

public SortSelect()
Constructs a SortSelect object.
Method Detail

buildit

public String buildit(RequestManager rMngr,
                      String name)
Generates a String containing the HTML for the sort select list for the currently selected database using the parameters containined in the RequestManager object and the name of the gadget.
Specified by:
buildit in interface GadgetBuilder
Parameters:
rMngr - object containing input parameters for the request.
name - the name of the gadget - the section name in the configuration file defining the particular gadget.
Returns:
String

toString

public String toString()
Generates a String representation of the object.
Specified by:
toString in interface GadgetBuilder
Returns:
String
Overrides:
toString in class Object

Open SiteSearch 4.1.1
Final