Method getEditor()
Return type:
javax.swing.ComboBoxEditor
Member of:
javax.swing.JComboBox
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return (c == getEditor().getEditorComponent());
2
return getEditor().getItem();
3
driver.setPath(pathField.getEditor().getItem().toString());
4
driver.setPath(pathField.getEditor().getItem().toString());
5
return (String)comboBox.getEditor().getItem();
6
comboBox.getEditor().setItem(text);
7
Component editor = box.getEditor().getEditorComponent();
8
Object item = searchField.getEditor().getItem();
9
return (String)source.getEditor().getItem();
10
Component ed = _filterCombo.getEditor().getEditorComponent();
11
if (getEditor() instanceof SComboBoxEditor) {
12
getEditor().getEditorComponent().setBackground( Color.white );
13
jcbTables.getEditor().addActionListener(actionHandler);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.