javax.swing.text.html
Class OptionComboBoxModel
java.lang.Object
javax.swing.AbstractListModel
javax.swing.DefaultComboBoxModel
javax.swing.text.html.OptionComboBoxModel
- All Implemented Interfaces:
- ComboBoxModel, ListModel, MutableComboBoxModel, Serializable
- class OptionComboBoxModel
- extends DefaultComboBoxModel
- implements Serializable
OptionComboBoxModel extends the capabilities of the DefaultComboBoxModel,
to store the Option that is initially marked as selected.
This is stored, in order to enable an accurate reset of the
ComboBox that represents the SELECT form element when the
user requests a clear/reset. Given that a combobox only allow
for one item to be selected, the last OPTION that has the
attribute set wins.
- Author:
- Sunita Mani
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
selectedOption
private Option selectedOption
OptionComboBoxModel
OptionComboBoxModel()
setInitialSelection
public void setInitialSelection(Option option)
- Stores the Option that has been marked its
selected attribute set.
getInitialSelection
public Option getInitialSelection()
- Fetches the Option item that represents that was
initially set to a selected state.