Delete all class files

1998-09-15 Thread David Warnock
Hi, I am using Jikes 0.37 and whilst I trust it's -depends option I like to delete all class files prior to building a release. I am also very new to Linux and cannot see how to delete *.class files from a directory tree. Under windows NT I could use "del *.class /s" but "rm -r *.class" does not

Re: Delete all class files

1998-09-15 Thread David Warnock
Paul Reavis wrote: > All of which is more complicated than my favorite method, which is to > specify a separate .class file directory with the "-d" option (javac or > jikes); then it's just > > rm -r classes\* Ok, this is neat. Do I get a complete duplicate of my source directories for the clas

Re: Which database support UNICODE?

1998-09-14 Thread David Warnock
Gao Lei wrote: > > Dear friends, > > Which data support unicode on the Linux platform? > > Thanks. Gao, Interbase 5 definately does support unicode but is commercial. It looks from the to-do list as if postgresql 6.4 will support unicode but I don't know for sure, nor do I know the timetable

Re: Printing of Graphics

1998-09-15 Thread David Warnock
Chris Sommers wrote: > > Maarten, > Try using the swing graphics library. It has a componenet > called JTable which is suitable. I've been using Swing under > a different "popular" OS lately (guilt...), I like it. > > This begs the question - > > Open question to the Community: is Swing availa

Object Mapping into sql dbms?

1998-09-19 Thread David Warnock
There are a large number of commercial products available to map java objects into relatonal databases (I use one called VBSF for some commercial products). But are there any Open Source tools to do this? I am interested in contributing to such a project as I need it for several open source proje

Re: Object Mapping into sql dbms?

1998-09-20 Thread David Warnock
Peter T Mount wrote: > > But are there any Open Source tools to do this? I am interested in > > contributing to such a project as I need it for several open source > > projects I have planned. > > I added this functionality into the PostgreSQL JDBC driver recently for > the next release (6.4 due

Re: Object Mapping into sql dbms?

1998-10-06 Thread David Warnock
Ean and everyone else, I am definately interested. We have our system working single user, we have standard interfaces and all I have so far is available under LGPL. We have a big deadline at the end of October and too much work to do before then. I will be putting it out (and am discussing wit

Re: Swing on Blackdown jdk1.1.6

1998-11-14 Thread David Warnock
io" > and other stuff? Or should it be in "lib" with classes.zip ? > Just wondering You don't need to unjar swing.jar, you can put the file anywhere but you need to have swing.jar in your classpath (usually defined using -cp command line option for JRE). eg CLASSPATH=/java/classes.zip:/java/swing.jar Dave David Warnock Sundayta Ltd

Re: nested classes, packages, and javac depend

1998-12-04 Thread David Warnock
tude faster than JAVAC and so far as I can see the -depend works. You may want to use the +E compiler switch to get errors in the same/similar format to JAVAC. The address is http://www.alphaworks.ibm.com/formula/Jikes/ (it's available as a link from the blackdown site). Dave David Warnock Sundayta Ltd

Re: nested classes, packages, and javac depend

1998-12-04 Thread David Warnock
. As John has said a new version will be available on Monday you could try again then. Or just in case I got the url wrong I normally see new versions announced on Cafe au lait at http://sunsite.unc.edu/javafaq/ Dave David Warnock Sundayta Ltd

Re: nested classes, packages, and javac depend

1998-12-04 Thread David Warnock
:/usr/local/jdk117_v1a/lib/classes.zip:/home/david/j ar/swingall .jar:/home/david/jar/postgresql.jar I am sorry but I can't remember what I did to get this working at the moment. If I do remember I'll let you know. Dave David Warnock Sundayta Ltd

Re: what tools do you use for programming

1998-12-08 Thread David Warnock
the greatness of layout managers and the translation support Java Apps can be very very dynamic if built in code. Just by 2 cents Dave David Warnock Sundayta Ltd

Re: JDK 1.2

1998-12-16 Thread David Warnock
- add it to your classparth and away you go. Dave David Warnock Sundayta Ltd

Re: Yeah! Web based threaded messaging is best (WAS: Re: [ATTENTION]: Mailing List Changes

1999-01-12 Thread David Warnock
mostly people outside the USA wheer we pay per minute for the phone connection. Dave David Warnock Sundayta Ltd

Re: jvm support for >1024 fds

1999-01-18 Thread David Warnock
something about this at Linux Weekly news a while ago. Try searching at http://lwn.net/ Regards Dave David Warnock Sundayta Ltd

Re: JDK 1.2 TimeTable Not Possible Yet, Status Report

1999-01-20 Thread David Warnock
Kevin, Thank-you for the update but more importantly thank-you to the whole team for all the work you are doing on our behalf. Your efforts are much appreciated. Dave David Warnock Sundayta Ltd

Re: Printing in Java

1999-01-22 Thread David Warnock
;printing complete"); } } } I have used this on JDK 1.1.6 on NT and Linux. Win NT counts the pagedimension as the printable area of the paper and Linux as the paper size. Other than that OK. Regards Dave David Warnock Sundayta Ltd

Re: printing w/1.1.7

1999-02-24 Thread David Warnock
ting Error: " + e); } finally { pj.end(); JOptionPane.showMessageDialog(this, "printing complete"); } } } I have used this on JDK 1.1.7 on NT and Linux. Win NT counts the pagedimension as the printable area of the paper and Linux as the paper size. O

Re: This works on Linux/ W95 not on NT. Why?

1999-03-31 Thread David Warnock
on both. I used to use Kawa on Windows but find that a better editor with some project features is better than the IDE with good project features but a poor editor. I prefer not to use a GUI builder. Amusingly enough most of my deployment is on Win 95 currently. Dave

Re: This works on Linux/ W95 not on NT. Why?

1999-03-31 Thread David Warnock
r apps using 3rd party libraries? Are the user interfaces built by "hand" or using a GUI Builder? I just wonder if using something like JBuilder creates applications that are as easy to test cross-platform. Dave David Warn