Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   //Run Button handler
  2.   private class runButtonHandler implements ActionListener {
  3.     public void actionPerformed(ActionEvent e){
  4.       //TODO: implement
  5.     }
  6.    
  7.     public double calcBal(double p, double t, double r){
  8.       //TODO: implement
  9.     }
  10.   }
  11.  
  12.   //ActionListener that sets the action for when a user clicks "exit"
  13.   private class ExitButtonHandler implements ActionListener{
  14.     public void actionPerformed(ActionEvent e){
  15.       //Simple system exit
  16.       System.exit(0);
  17.     }
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement