com.bankframe.fe.html
Class Select

java.lang.Object
  extended bycom.bankframe.fe.html.HTMLWidget
      extended bycom.bankframe.fe.html.Select

public class Select
extends HTMLWidget

This class implements a HTML Select widget which is like a list box.

Author:
ETU

Constructor Summary
Select(java.lang.String name, java.util.Vector values)
          Constructor.
Select(java.lang.String name, java.util.Vector values, boolean multiple)
          Constructor.
Select(java.lang.String name, java.util.Vector values, boolean multiple, int size)
          Constructor.
 
Method Summary
 java.lang.String toHTML()
          This method returns a HTML representation of this widget.
 
Methods inherited from class com.bankframe.fe.html.HTMLWidget
quote, quote
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Select

public Select(java.lang.String name,
              java.util.Vector values)
Constructor.

Parameters:
name - the name of this combobox button
values - is a Vector of Strings to place in the list box

Select

public Select(java.lang.String name,
              java.util.Vector values,
              boolean multiple)
Constructor.

Parameters:
name - the name of this combobox button
values - is a Vector of Strings to place in the list box
multiple - is a boolean specifying that multiple options in the select box can be chosen

Select

public Select(java.lang.String name,
              java.util.Vector values,
              boolean multiple,
              int size)
Constructor.

Parameters:
name - the name of this combobox button
values - is a Vector of Strings to place in the list
multiple - is a boolean specifying that multiple options in the select box can be chosen
size - is the number of items that should be displayed in the select listbox
Method Detail

toHTML

public java.lang.String toHTML()
This method returns a HTML representation of this widget.

Specified by:
toHTML in class HTMLWidget
Returns:
a string containing HTML markup


Copyright © 2004 Siebel Systems, Inc. All rights reserved.