javax.swing.text.html
class: OptionComboBoxModel [javadoc |
source]
java.lang.Object
javax.swing.AbstractListModel
javax.swing.DefaultComboBoxModel
javax.swing.text.html.OptionComboBoxModel
All Implemented Interfaces:
Serializable, MutableComboBoxModel, ListModel
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.
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.swing.text.html.OptionComboBoxModel Detail: |
public Option getInitialSelection() {
return selectedOption;
}
Fetches the Option item that represents that was
initially set to a selected state. |
public void setInitialSelection(Option option) {
selectedOption = option;
}
Stores the Option that has been marked its
selected attribute set. |