1 7 package javax.swing.text.html; 8 9 import javax.swing.*; 10 import javax.swing.event.*; 11 import java.io.Serializable ; 12 13 14 26 27 class OptionComboBoxModel extends DefaultComboBoxModel implements Serializable { 28 29 private Option selectedOption = null; 30 31 35 public void setInitialSelection(Option option) { 36 selectedOption = option; 37 } 38 39 43 public Option getInitialSelection() { 44 return selectedOption; 45 } 46 } 47 | Popular Tags |