我有这个ComboBox
我希望在运行时触发选定的选项,我知道使用button.doClick()
触发按钮操作,但我怎样才能在ComboBox
中执行此操作行动事件?
这是我的ComboBox
事件:
comboBox.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
if(filters.isEmpty())
filters.add(RowFilter.regexFilter(comboBox.getSelectedItem().toString(), 2));
else
filters.set(0, RowFilter.regexFilter(comboBox.getSelectedItem().toString(), 2));
// Apply filters
sorter.setRowFilter(RowFilter.andFilter(filters));
/* comboBox.setSelectedItem("BAR");*/
}
});