Searched refs:DefaultComboBoxModel (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/javax/swing/JComboBox/7031551/
H A Dbug7031551.java51 ComboBoxModel rawTestModel = new DefaultComboBoxModel();
73 // Test DefaultComboBoxModel
74 DefaultComboBoxModel testModel = new DefaultComboBoxModel();
75 testModel = new DefaultComboBoxModel(new Vector());
76 testModel = new DefaultComboBoxModel(new Object[]{TEST_ELEMENT1});
85 ComboBoxModel<String> stringTestModel = new DefaultComboBoxModel<String>();
107 // Test DefaultComboBoxModel
108 DefaultComboBoxModel<String> testModel = new DefaultComboBoxModel<Strin
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionComboBoxModel.java33 * OptionComboBoxModel extends the capabilities of the DefaultComboBoxModel,
44 class OptionComboBoxModel extends DefaultComboBoxModel implements Serializable {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultComboBoxModel.java40 public class DefaultComboBoxModel<E> extends AbstractListModel<E> implements MutableComboBoxModel<E>, Serializable { class in inherits:AbstractListModel,MutableComboBoxModel,Serializable
45 * Constructs an empty DefaultComboBoxModel object.
47 public DefaultComboBoxModel() { method in class:DefaultComboBoxModel
52 * Constructs a DefaultComboBoxModel object initialized with
57 public DefaultComboBoxModel(final E items[]) { method in class:DefaultComboBoxModel
70 * Constructs a DefaultComboBoxModel object initialized with
75 public DefaultComboBoxModel(Vector<E> v) { method in class:DefaultComboBoxModel
H A DJComboBox.java70 * @see DefaultComboBoxModel
178 * @see DefaultComboBoxModel
192 * @see DefaultComboBoxModel
196 setModel(new DefaultComboBoxModel<E>(items));
206 * @see DefaultComboBoxModel
210 setModel(new DefaultComboBoxModel<E>(items));
220 * @see DefaultComboBoxModel
224 setModel(new DefaultComboBoxModel<E>());
772 if ( model instanceof DefaultComboBoxModel ) {
773 ((DefaultComboBoxModel)mode
[all...]
/openjdk7/jdk/test/java/beans/Performance/
H A DTestIntrospector.java41 javax.swing.DefaultComboBoxModel.class,
43 javax.swing.DefaultComboBoxModel.class,
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DCreateMBeanDialog.java132 connections.setModel(new DefaultComboBoxModel<ProxyClient>
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java37 import javax.swing.DefaultComboBoxModel;
560 DefaultComboBoxModel m = (DefaultComboBoxModel) entries.getModel();
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java52 import javax.swing.DefaultComboBoxModel;
548 DefaultComboBoxModel m = (DefaultComboBoxModel) entries.getModel();
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java62 import javax.swing.DefaultComboBoxModel;
732 ((DefaultComboBoxModel) lafComboBox.getModel()).
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java1139 // DefaultComboBoxModel
1143 javax.swing.DefaultComboBoxModel m = (javax.swing.DefaultComboBoxModel)oldInstance;

Completed in 102 milliseconds