Advertisement
Guest User

Untitled

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