last updated at 15 Feb, 2007 04:26 (1 times)
...on the other hand, you may want to point your browser to: < http://prdownloads.sourceforge.net/jswat/jswat-2.39.zip?use_mirror=easynews > and download the zipped file from your closest mirror.You will get GPL version of a front end debugger that uses your tools.jar file to provide the debugging functionality.
This is the older version but it works with Java 1.41 and up ( possibly also with Java 1.4[x<1] ); the newer version requires Java 1.5.
My environment variables, the first set in Config.sys, the other two(2) in a CMD file to set on the fly (where x is your root directory and y is the directory where you unzipped the JSwat front end):
SET GCD_JAVA_HOME=X:\java141\jre
sets Golden Code Development home environment.
And create a file, say x:\os2\myJSwat.cmd
SET JSWAT_HOME=y:\jswat-2.39
SETCLASSPATH=x:\java141\lib\tools.jar;%JSWAT_HOME%\jswat.jar;%JSWAT_HOME%\jclasslib.jar;%JSWAT_HOME%\parser.jar
Each SET statement in a single line --as a Java programmer I knew you were aware of it-- so please bear with me in case I am not so clear. Hence in the above *cmd the second SET has to be in a single line preceding CLASSPATH=...
Note that having the older (Java 1.1.8) CLASSPATH environment in your Config.sys file may introduce problems --hence, I do not have it set.
Additionally, references to X:\java11\dll in your Config.sys LIBPATH may introduce errors --consequently, I do not have a reference to it.
Finally, I started the debugging front end --from anywhere in my file system-- like this.
java com.bluemarsh.jswat.Main
And this is what appeared:
< http://www.chingonazo.com/OS2IBMJSwat.JPG >
< http://www.chingonazo.com/OS2IBMJSwat1.JPG >
As before, I did not include any switches --those are in the exclusive domain of the Java developer and may vary according to how s/he builds her/his test applications.
Good luck!