From: Robert W. B. <rb...@di...> - 2001-10-26 19:26:05
|
On Fri, 26 Oct 2001 Mat...@i2... wrote: > How does one import the default java package - i.e. I want to use a class > in the jython interpreter that has no package name. > > Matt > mat...@i2... Import should work with classes that are not in a package. If class "foo" has no package statement and is in the classpath, then "import foo" should work. -robert |