home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 May / PCO_5_97.ISO / FilesBBS / OS2 / CSIME.ARJ / CSIME.ZIP / csime / mug / app / QuitCommand.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-02-09  |  352 b   |  8 lines

  1. package mug.app;
  2.  
  3. public class QuitCommand extends Command {
  4.    public void execute() {
  5.       System.exit(0);
  6.    }
  7. }
  8.