home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 February / PCpro_2005_02.ISO / files / opensource / Opcion_1.1.1 / Opcion_v1.1.1.exe / FontViewer / Opcion.class (.txt)
Encoding:
Java Class File  |  2004-04-25  |  687 b   |  15 lines

  1. package FontViewer;
  2.  
  3. import FontViewer.windows.MainWindow;
  4. import FontViewer.windows.Splash;
  5.  
  6. public class Opcion {
  7.    public static void main(String[] args) {
  8.       Splash s = new Splash("Logo.gif");
  9.       s.show();
  10.       MainWindow mw = new MainWindow();
  11.       s.dispose();
  12.       mw.show();
  13.    }
  14. }
  15.