home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.text.html;
-
- import java.io.Serializable;
- import javax.swing.DefaultComboBoxModel;
-
- class OptionComboBoxModel extends DefaultComboBoxModel implements Serializable {
- private Option selectedOption = null;
-
- public Option getInitialSelection() {
- return this.selectedOption;
- }
-
- public void setInitialSelection(Option var1) {
- this.selectedOption = var1;
- }
- }
-