Exit.java :  » J2EE » enhydra » discRack » actions » Java Open Source

Java Open Source » J2EE » enhydra 
enhydra » discRack » actions » Exit.java
package discRack.actions;

import discRack.*;

import java.awt.event.ActionEvent;

/**
 * Class that realizes <B>exit</B> action.
 *
 * @author Sasa Bojanic
 * @version 1.0
 */
public class Exit extends ActionBase {

   public Exit (DiscRack discRack) {
      super(discRack);
   }

   public void actionPerformed(ActionEvent e) {
      System.exit(0);
   }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.