From: Ype K. <yk...@xs...> - 2002-03-01 20:31:05
|
Fred, >I have a .jar build with jdk 1.3 > >I'm running jython21 installed under jdk1.4. > >when I try to import my jar, I can see the jar and a dir of the imported >package shows all the classes. > >But I cannot instantiate or otherwise reference the package. You cannot instantiate a package, jython has already done that for you. When this works: import your dir(your.package) you should be able to do this: yourFooObj = your.package.someClassFooAsShowedByDir() Hope this helps, Ype -- |