Re: Jump and ArgoUML

1999-10-11 Thread Robert Simmons Jr.
Sean Chen wrote: > Hi Robert, > > Thanks for your clarification. It seems like you'll be building a library > around which modelling tools can be built, correct? In essence, the > metamodel. Hmm, I dont know if that is the case. there will be functionality for manipulation of the model, its ju

Re: Jump and ArgoUML

1999-10-11 Thread Robert Simmons
*shrug* I suppose there is somewhat of a duplication. Im not sure of the license of argo. My project will be released with full open source. Personalyl, knowing universities, I dont trust them to come out with comething completely open. It could turn out that the project is largely for my own good

Java and Linux

1999-10-11 Thread Lee_Xing
Hi: I'm new in Linux. Please forgive me if the questions are too simple. Q1: What version of Java (1.1 or 1.2) does JVM inside Blackdown JDK package support? Q2: A Java application was developed on Windows NT 4.0 (Intel) by using VisualCafe 3.0. Can we simply move all class files of the applic

Re: Java and Linux

1999-10-11 Thread dave madden
=>From: [EMAIL PROTECTED] =>... =>Q1: What version of Java (1.1 or 1.2) does JVM inside Blackdown JDK package =>support? Both versions are available. =>Q2: A Java application was developed on Windows NT 4.0 (Intel) by using =>VisualCafe 3.0. Can we simply move all class files of the appli

Re: Java and Linux

1999-10-11 Thread Weiqi Gao
[EMAIL PROTECTED] wrote: > > Q1: What version of Java (1.1 or 1.2) does JVM inside Blackdown JDK > package support? 1.1 and 1.2. The 1.2 is pre-release. > Q2: A Java application was developed on Windows NT 4.0 (Intel) by > using VisualCafe 3.0. Can we simply move all class files of the > appl

Linux 2.4 removes process limit

1999-10-11 Thread Nelson Minar
One thing that's been worrying me about Linux on Java is that stock Linux systems have had a limit of 1024 processes, 512 per user. Each native thread is a Linux process, so that puts a quick hard limit on the number of threads your Java program could have. Linux 2.4 apparently removes the static

Re: HELP: can't give a path to RessourceBoundle???

1999-10-11 Thread David Marshall
Bruno Boettcher wrote: Hello, a friend just showed me an example where to load a given set of RessourceBoundles he prefixed the baseName of the boundle with a (relative) path... Now i ran back to my computer and made some tests and it doesn't work for me..  i am using jdk1.2pre2 on linux

installation jdk1.2

1999-10-11 Thread Rogério Garibalde Miranda
I am with a problem to do to work the jdk1.2 for linux. Does anybody have a step the step for the installation? thank you. Rogerio G Miranda -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble

installation jdk1.2

1999-10-11 Thread Rogério Garibalde Miranda
I am with a problem to do to work the jdk1.2 for linux. Does anybody have a step the step for the installation? thank yoy. Rogerio G Miranda -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble

RE: Stupid Newbie Questions: Catching unanticipated null pointer exceptions (Are there really any other kind =^)

1999-10-11 Thread romadinov
Hi, > My suggestion: call addNotify() just before line 100 in Tedit.java. You should never call addNotify() directly. With best wishes, Alex Romadinoff, Lead Software Developer, OpenTeach Software, Ltd -- To UNSUBSCRIBE, em

HELP: can't give a path to RessourceBoundle???

1999-10-11 Thread Bruno Boettcher
Hello, a friend just showed me an example where to load a given set of RessourceBoundles he prefixed the baseName of the boundle with a (relative) path... now this astonished me a lot since i never managed to get my programs to load their ressources from elsewhere as the current directory (which

Peculiar problem

1999-10-11 Thread Robert Simmons Jr.
I am working on a rather large apoplication and just spent a good 4 hours looking for a bug. I thought at first my properties storing gizmo was broken and looked all throught that for the problem. FInally I realized the problem was the size of the window. This class extends JFrame and gets a deskt

Re: Changing the font on Swing slider

1999-10-11 Thread Jacob Nikom
Hi Philippe, Thank you very much for your suggestion - it work very well with TabbedPane component. However, when I tried to apply it to SLider widget, it did not work. I got the info about all PLAF properties by calling UIManager.getDefaults(). Here is the simple program: import java.util.*;

Re: Stupid Newbie Questions: Catching unanticipated null pointer exceptions (Are there really any other kind =^)

1999-10-11 Thread Alex M.
> Exception in thread "main" java.lang.NullPointerException: > at java.awt.Container.addImpl(Container.java:316) > at java.awt.Container.add(Container.java:245) > at Tedit.(Tedit.java:100) > at Tedit.main(Tedit.java:557) The

Re: Stupid Newbie Questions: Catching unanticipated null pointer exceptions (Are there really any other kind =^)

1999-10-11 Thread Paul Mclachlan
At 1:07 10 Oct 1999 -0500, James G. Stallings II wrote: > I guess what I'm looking for is some solid suggestions for debugging. > Should I write some kind of exception catcher for the null pointer > exception? It happens early in the code execution; here's the dump: > > Exception in thread "mai

Re: Stupid Newbie Questions: Catching unanticipated null pointer exceptions (Are there really any other kind =^)

1999-10-11 Thread Jo Uthus
"James G. Stallings II" wrote: | Exception in thread "main" java.lang.NullPointerException: | at java.awt.Container.addImpl(Container.java:316) | at java.awt.Container.add(Container.java:245) | at Tedit.(Tedit.java:100) | at