/** * Maps {@code JComboBox.getKeySelectionManager()} through queue */ public KeySelectionManager getKeySelectionManager() { return (runMapping(new MapAction<KeySelectionManager>("getKeySelectionManager") { @Override public KeySelectionManager map() { return ((JComboBox) getSource()).getKeySelectionManager(); } })); }
/** * Maps {@code JComboBox.setKeySelectionManager(KeySelectionManager)} * through queue */ public void setKeySelectionManager(final KeySelectionManager keySelectionManager) { runMapping(new MapVoidAction("setKeySelectionManager") { @Override public void map() { ((JComboBox) getSource()).setKeySelectionManager(keySelectionManager); } }); }
public void setKeySelectionManager(KeySelectionManager aManager) { combo.setKeySelectionManager(aManager); }
public KeySelectionManager getKeySelectionManager() { return combo.getKeySelectionManager(); }