Hey, thanks! That worked -- but one question. Given the .class files are encoded, how do I know the exact path to the object in question for the import statement, or even what objects are available, or what their public properties and methods are?
In C++ there would be a header file that would be a public declaration of all the object handles, but here I see nothing? Is there a tool I would use to do this?
For example, one of the .jar files contains an "activityID.class" file that contains an object "activityID". But the import I was told to use was something like:
import com.pm.public.someotherthing.somethingmore.activityID
even though the actual file is in C:\java\tools\activity_lib.jar
Seems like this is something that would be covered in the basic documentation, but again, I see naught.