我想通过在文本字段中键入字符来搜索任何内容,并将其过滤到表格上。我不明白我在这里必须采用哪种逻辑?
btnDoctorDir.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
doctorContactButtonPressed(); // method to display recodrds in table
}
});
btnGeneralDir.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
generalContactButtonPressed();
}
});
[]