FileDocCategorySizeDatePackage
OptionComboBoxModel.javaAPI DocJava SE 5 API1263Fri Aug 26 14:58:18 BST 2005javax.swing.text.html

OptionComboBoxModel

public 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
version
1.8 12/19/03

Fields Summary
private Option
selectedOption
Constructors Summary
Methods Summary
public javax.swing.text.html.OptiongetInitialSelection()
Fetches the Option item that represents that was initially set to a selected state.

	return selectedOption;
    
public voidsetInitialSelection(javax.swing.text.html.Option option)
Stores the Option that has been marked its selected attribute set.


                    
        
	selectedOption = option;