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

  1. package mug.app;
  2.  
  3. public class NewCommand extends Command {
  4.    private ApplicationFrame _app;
  5.  
  6.    public NewCommand(ApplicationFrame var1) {
  7.       this._app = var1;
  8.    }
  9.  
  10.    public void execute() {
  11.       Document var1 = this._app.emptyDocument();
  12.       this._app.setDocument(var1);
  13.       ((Command)this).executeNext();
  14.    }
  15. }
  16.