Andi Vajda wrote:
>
> On Thu, 3 Nov 2011, Bill Janssen wrote:
>
> >>> * All classes from either --include jars or the JRE, which already
> >>> selected
> >>>classes depend on, that come from packages included with --package
> >>
> >> No. If you --include blah.jar and its package(s) are no
On Thu, 3 Nov 2011, Bill Janssen wrote:
* All classes from either --include jars or the JRE, which already selected
classes depend on, that come from packages included with --package
No. If you --include blah.jar and its package(s) are not listed, then
classes it contains are not wrapped.
Andi Vajda wrote:
>
> On Thu, 3 Nov 2011, Bill Janssen wrote:
>
> > Andi Vajda wrote:
> >
> >>> Won't specifying "--package javax.imageio" cause all public classes in
> >>> that package to be wrapped? Seems to work that way for java.awt.image.
> >>
> >> No, and it never has. All --package bla
On Thu, 3 Nov 2011, Bill Janssen wrote:
Andi Vajda wrote:
On Nov 2, 2011, at 10:02, Bill Janssen wrote:
I'm trying to export the javax.imageio.ImageIO class from a Python
module. I use the following command:
$ sudo python -m jcc.__main__ --jar GoodStuff.jar --package java.awt.image
--
Andi Vajda wrote:
>
> On Nov 2, 2011, at 10:02, Bill Janssen wrote:
>
> > I'm trying to export the javax.imageio.ImageIO class from a Python
> > module. I use the following command:
> >
> > $ sudo python -m jcc.__main__ --jar GoodStuff.jar --package java.awt.image
> > --package javax.imagei
I'm trying to export the javax.imageio.ImageIO class from a Python
module. I use the following command:
$ sudo python -m jcc.__main__ --jar GoodStuff.jar --package java.awt.image
--package javax.imageio --python goodstuff --version 1.0.0 --vmarg
-Djava.awt.headless=true --build --install
Every