home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-10-10 | 775 b | 34 lines |
- // VersionPanelTestApplet.java
- //
- // Created 09/25/96
- //
- // (C)Copyright 1996 Microsoft Corporation, All rights reserved.
- //
-
- import java.io.File;
-
-
- public
- class VersionPanelTestApplet extends TestApplet
- {
- public void start ()
- {
- System.out.println("Creating frame...");
-
- String filename = getParameter("file");
- File file = filename != null ? new File(filename) : null;
-
- VersionPanelTest f = new VersionPanelTest(null);
- f.isapplet = true;
- f.newfile(file);
-
- System.out.println("Frame created.");
- }
-
- public static void main (String[] args)
- {
- TestApplet.main(new VersionPanelTestApplet(), "Version Panel Test Applet", args);
- }
- }
-
-