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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
2004-04-25
|
687 b
|
15 lines
package FontViewer;
import FontViewer.windows.MainWindow;
import FontViewer.windows.Splash;
public class Opcion {
public static void main(String[] args) {
Splash s = new Splash("Logo.gif");
s.show();
MainWindow mw = new MainWindow();
s.dispose();
mw.show();
}
}