home *** CD-ROM | disk | FTP | other *** search
/ Chip Special: HTML & Java / Chip-Special_1997-01_HTML-a-Java.bin / javasdk / sdk-java.exe / SDKJava.cab / Samples / Version / SystemVersionTest.java < prev    next >
Encoding:
Java Source  |  1996-10-10  |  442 b   |  27 lines

  1. // SystemVersionTest.java
  2. //
  3. // Created 09/25/96
  4. //
  5. // (C)Copyright 1996 Microsoft Corporation, All rights reserved.
  6. //
  7.  
  8. import java.awt.*;
  9.  
  10.  
  11. public
  12. class SystemVersionTest extends TestApplet
  13. {
  14.  
  15.     public void init ()
  16.     {
  17.         add(new SystemVersionPanel());
  18.     }
  19.  
  20.  
  21.     public static void main (String[] args)
  22.     {
  23.         TestApplet.main(new SystemVersionTest(),"System Version Information", args);
  24.     }
  25. }
  26.  
  27.