Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1.  
  2. JButton btnNewButton = new JButton("Confirm");
  3. btnNewButton.addActionListener(new ActionListener() {
  4. public void actionPerformed(ActionEvent arg0) {
  5.  
  6. DataManager.getIdForSearch(iD_forDelete);
  7.  
  8. try {
  9. DataManager.deleteMember();
  10. } catch (ConcurrentModificationException ex) {
  11.  
  12. // handle this.. find out why its throwing this.
  13.  
  14. }
  15.  
  16. setVisible(false);
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement