Clipping top-level windows in Java

2000-09-04 Thread Bogdan Daniel
Hello! I wonder if anyone can help. I need to make a non-rectangular top-level window (JWindow). When I do the clipping, it seems that it takes place only what's inside my area is visible), however, the rest of the rectangle is gray, not transparent. Does anyone have any idea why this happens? An

Some jar utility and .jar questions

2000-09-04 Thread Bill Halchin
Hello, 1) Can the javac compler extract classes from .jar files if these files are in CLASS_PATH or must I "unjar"? 2) I tried "jar -t xerces.jar" and the jar utility seems to be waiting for more from StdIn?? I also tried "jar -x xerces.jar" with the same results

Re: Clipping top-level windows in Java

2000-09-04 Thread Nathan Meyers
Bogdan Daniel wrote: > Hello! > I wonder if anyone can help. I need to make a non-rectangular top-level > window (JWindow). When I do the clipping, it seems that it takes place > only what's inside my area is visible), however, the rest of the rectangle > is gray, not transparent. Does anyone ha

Re: Some jar utility and .jar questions

2000-09-04 Thread Man Chi Ly
On Mon, 4 Sep 2000, Bill Halchin wrote: > Hello, > >1) Can the javac compler extract classes from .jar files if > these files are in CLASS_PATH or must I "unjar"? yes, i.e. CLASSPATH=some/dir/classes:other/dir/xerces.jar > >2) I tried "jar -t xerces.jar" and the jar utilit

Re: Some jar utility and .jar questions

2000-09-04 Thread Joseph Shraibman
Bill Halchin wrote: > > Hello, > >1) Can the javac compler extract classes from .jar files if > these files are in CLASS_PATH or must I "unjar"? javac is like any other java program. If it is in the CLASSPATH (no underscore) it can be found. > >2) I tried "jar -t xerce

Re: Some jar utility and .jar questions

2000-09-04 Thread Joi Ellis
On Mon, 4 Sep 2000, Bill Halchin wrote: > Hello, > >1) Can the javac compler extract classes from .jar files if > these files are in CLASS_PATH or must I "unjar"? Try using the sourcepath option: javac -sourcepath the.jar class.java Don't now if it will work, it's what I'd try

Re: Some jar utility and .jar questions

2000-09-04 Thread Bill Halchin
Dear Man Chi Ly and others, I now have the CLASSPATH: CLASSPATH=$HOME/FTP/xerces-1_1_3/xerces.jar (FTP is a directory I put everything I download on Linux) export CLASSPATH - I did a source on .bashrc - I echo'd $CLASSPATH - the .jar file is in the path but javac cannot see the import