Just use event.getSource()
frim within actionPerformed
Cast it to the component
for Ex, if you need combobox
JComboBox comboBox = (JComboBox) event.getSource();
JTextField txtField = (JTextField) event.getSource();
use appropriate api to get the value,
for Ex.
Object selected = comboBox.getSelectedItem(); etc.