Re: Thread in the Linux's JVM

1999-11-22 Thread Chris Kakris
"Patrick J. McNerthney" wrote: > > I was just trying to figure how to do this in Linux, I am use to the > CTRL-BREAK combo in NT. > > I just tried this on my Linux machine and it didn't work. Any obvious > things to check ??? It runs straight out of the box for me (RedHat 6.1, Blackdown jdk1.2

Re: I have core file from jikes (if anybody is interested)

1999-11-22 Thread Chris Abbey
what exactly do you feel is unfriendly twoards netscape about developerworks?? the fact that it doesn't have one of those assinine "best viewed with" icons? The bug system is jitterbug for crying out loud now if you're talking about some of the stuff served up from domino then I can almost see

Re: Thread in the Linux's JVM

1999-11-22 Thread Patrick J. McNerthney
> I don't know if you know this or not but hitting [CTRL][\] (control backslash) > will cause your application to dump a full stack trace of all your threads. > Very handy for debugging. I was just trying to figure how to do this in Linux, I am use to the CTRL-BREAK combo in NT. I just tried thi

Re: Thread in the Linux's JVM

1999-11-22 Thread Chris Kakris
[EMAIL PROTECTED] wrote: > > Pardon me for one more question - how to check thread status from command > line (like "ps" is used to check process status from command line) on Linux? > I'm new in Linux. I don't know if you know this or not but hitting [CTRL][\] (control backslash) will cause your

IBM JDK 1.3.0 preview 1Q 2000!

1999-11-22 Thread Avi Schwartz
According to the following IBM link ( http://www.ibm.com/java/jdk/other/portingplans.html ) JDK 1.3.0 preview for Linux will be available 1Q 2000 with GA early 2Q 2000! Yes! Avi -- Avi Schwartz Get a Life [EMAIL PROTECTED] Get Linux

html in JLabel, etc: update swing in 1.2prev2?

1999-11-22 Thread noisebrain
I have a project where I want badly to use the htlm-in-component stuff that is part of Swing1.1.1 (you can label your buttons,fields, etc. with any html, .e.g., String htmlText = "A JLabel with various text styles" + "And a new line!"; JLabel myLabel = new JLabel(htmlText

I have core file from jikes (if anybody is interested)

1999-11-22 Thread andrey
Hi, All! I have core file from jikes (about 6M) if anybody is interested:) I don't want to go with this to IBM's site - it's not "netscape-friendly" :) -- E-Mail: [EMAIL PROTECTED] Date: 22-Nov-99 Time: 16:34:49 Andrey. --

Rectangle problem javac:108: Wrong number of arguments in constructor.

1999-11-22 Thread DKoontz
Here's the compiler error I'm getting: /home/dak/Java/Training/src/Mat.java:108: Wrong number of arguments in constructor. g2.fill(new Rectangle(x, y, rectWidth, rectHeight)); What gives? The API docs for Java 1.2 has this const. The Java Trail 2D Graphics example StrokeAndFill.java has a simil

Re: Thread in the Linux's JVM

1999-11-22 Thread Nathan Meyers
On Mon, Nov 22, 1999 at 01:07:14PM -0600, [EMAIL PROTECTED] wrote: > Nathan, > > I really appreciate your valuable information. It helps a lot. > > Pardon me for one more question - how to check thread status from command > line (like "ps" is used to check process status from command line) on L

RE: Icon for an application

1999-11-22 Thread andrey
Hi, Dirk! Here is an example that creates ImageIcon (it's swing) from gif. The advantage is that /images/*.* is relative to CLASSPATH i.e. you don't care about exact location and it also works fine if resources come from jar. It is also platform-independent i.e. the same line of code works fine o

RE: Thread in the Linux's JVM

1999-11-22 Thread Lee_Xing
Nathan, I really appreciate your valuable information. It helps a lot. Pardon me for one more question - how to check thread status from command line (like "ps" is used to check process status from command line) on Linux? I'm new in Linux. Regards, Lee -Original Message- From: Natha

Re: HELP: lost JVM....

1999-11-22 Thread Juergen Kreileder
> Bruno Boettcher writes: Bruno> hello, i posted a similar message to debian lists, but Bruno> maybew someone here knows the problems... Bruno> i am running on a debian-potato system and i did loose the Bruno> java-functionality after the upgrade of theis morning, Bruno>

Re: Icon for an application

1999-11-22 Thread Joseph Shraibman
Dirk Waxweiler wrote: > Hi everybody > > I want to insert an Icon for my GUI. I get an Icon, but it ist a black > point. > > URL url = new URL("file:///./Brief.gif"); > Image icon = Toolkit.getDefaultToolkit().getImage(url); > prog.setIconImage(icon); > > Is my gif too big ? > I think the file u

Re: IDLtoJava Compiler

1999-11-22 Thread Bruno Boettcher
On Mon, Nov 22, 1999 at 09:18:46AM -0600, Hoppe, Hans wrote: > Is there an IDLtoJava Compiler out there for Linux? instead of the jdk CORBA implementation use something else e.g. http://www.inf.fu-berlin.de/~brose/jacorb/ -- ciao bboett ===

Re: HELP: Error: can't find libjava.so

1999-11-22 Thread Bruno Boettcher
On Mon, Nov 22, 1999 at 04:10:34PM +0100, Bruno Boettcher wrote: ok, found a fix. but still i do not know what failed. but as it seems it could be /bin/sh. > now when i try to launch any java program i get the message > Error: can't find libjava.so . ok, editing the java_wrapper

HELP: lost JVM....

1999-11-22 Thread Bruno Boettcher
hello, i posted a similar message to debian lists, but maybew someone here knows the problems... i am running on a debian-potato system and i did loose the java-functionality after the upgrade of theis morning, running any java program ends abruptly with the message Error: can't find libjava.so.

Re: JNI problem - unresolved symbols at RUN TIME

1999-11-22 Thread Jacob Nikom
Thank you Nathan, You were right. I thought if you use C++ files the linker picks up correct libraries automatically - not yet. Anyway, your answer reminds me how great our listserver is. Thank you again, Jacob Nikom Nathan Meyers wrote: > > On Fri, Nov 19, 1999 at 06:44:48PM -0500, Jacob

IDLtoJava Compiler

1999-11-22 Thread Hoppe, Hans
Is there an IDLtoJava Compiler out there for Linux? If not, is there one in development? --hch -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: [Partially OT] A Java parser - part 2

1999-11-22 Thread Vincent Risi
Michael Emmel wrote: > Vincent Risi wrote: > > > Andreas Rueckert wrote: > > > > > Hi! > > > > > > On Thu, 18 Nov 1999 Paul Mclachlan wrote: > > > > > > The next problem occured when I wanted 2 parsers to use the same base classes > > > for the AST. Never managed to do that, and I couldn't patc

Re: IDE's

1999-11-22 Thread Frank Mueller
Glenn Holmer wrote: > The company I work for has asked me to evaluate IDE's for Java, > and I would like to include those that run under Linux. For the > past year, I have been the only Java programmer in the shop, and > I've put out 30K lines of code using a text editor and javac. We > are loo