home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Sample.bin
/
runapplet.bat
< prev
next >
Wrap
DOS Batch File
|
1998-06-30
|
596b
|
16 lines
@echo off
rem Run the SwingSet demo applet
rem
if "%SWING_HOME%" == "" goto nohome
@echo on
java -classpath "classes;%SWING_HOME%\swing.jar;%SWING_HOME%\motif.jar;%SWING_HOME%\windows.jar;%SWING_HOME%\metal.jar;%SWING_HOME%\organic.jar;%SWING_HOME%\mac.jar;%SWING_HOME%\1.1_lib\swing.jar;%SWING_HOME%\1.1_lib\win.jar;%SWING_HOME%\1.1_lib\motif.jar;%SWING_HOME%\1.1_lib\metal.jar;%SWING_HOME%\1.1_lib\organic.jar;%SWING_HOME%\1.1_lib\mac.jar;%CLASSPATH%" sun.applet.AppletViewer SwingSetApplet.html
@echo off
goto done
:nohome
echo No SWING_HOME environment variable set.
:done