Re: A Global instance ?

1999-10-13 Thread Catalin Climov
package mypackage; public class Global // use this class to keep your global properties { private Global() // disable it's constructor, since all its members are static { } static // This is the static initialization. It is performed after the class is loaded into jvm {

Re: finalizer()

1999-01-05 Thread Catalin CLIMOV
Very strange. I tried to run your code and it worked fine with java (it displayed 'finelize'), but it didn't work with jre (it finished without displaying anything). I use the same jdk on Linux 5.1, kernel 2.0.34. Catalin CLIMOV. John Summerfield wrote: > I have this code:

Re: Q: Language determination???

1998-12-23 Thread Catalin CLIMOV
Hi, Have a look at java.util.Locale Catalin. Dirk Schreiber wrote: > Hello, > > i am looking for a function which returns the currently used language. I > can't find anything in the system.properties or api index. > > Any ideas??? -Thanks for any helpfull advice... > > I wish all a merr

Re: Repaint problems with JList/JScrollPane/JSplitPane

1998-12-08 Thread Catalin CLIMOV
Try also a myList.revalidate() also. It works. Catalin CLIMOV. Trieu Dang wrote: > Hi, > My application uses a JSplitPane in which the top and bottom components > are JScrollPane. The bottom scrollpane contains a JList. My list changes > depending on the user's actions

Re: JWindow.setLocation()

1998-11-30 Thread Catalin CLIMOV
Anguel Anguelov wrote: > Catalin CLIMOV wrote: > > > I tried it and it is not working. > > But as I stated in a previous mail, nit is working fine if the JWindow > > isVisible(). > > > > Gregg G. Wonderly wrote: > > > > > >But if I mo

Re: JWindow.setLocation()

1998-11-30 Thread Catalin CLIMOV
I tried it and it is not working. But as I stated in a previous mail, nit is working fine if the JWindow isVisible(). Gregg G. Wonderly wrote: > >But if I move the JFrame on the screen (with the mouse), and then > >display JWindow, it shows where it has to. > >I use jdk 1.1.7-v1a-glibc with nat

Re: JWindow.setLocation()

1998-11-27 Thread Catalin CLIMOV
is one, or do I just have bear it with patience? > > Robert. > > On Fri, 27 Nov 1998, Catalin CLIMOV wrote: > > > Hi, > > I have an application in a JFrame, and sometimes I have to show a > > JWindow somewhere on the screen. > > It seems JWindow.setLocation(

JWindow.setLocation()

1998-11-27 Thread Catalin CLIMOV
Hi, I have an application in a JFrame, and sometimes I have to show a JWindow somewhere on the screen. It seems JWindow.setLocation() is not working properly. To be more precise, my JWindow appears always at (0,0), doesn't matter the real location I want. But if I move the JFrame on the screen

Re: A very elementary question ?

1998-11-26 Thread Catalin CLIMOV
Mehrdad Jahansoozi wrote: Hi,     The problem is with your CLASSPATH, and maybe with PATH, too     First you will have to add your "/MyJavaDir/jdk117/bin/" to your PATH variable (PATH=%PATH:/MyJavaDir/jdk117/bin). An alternative solution is to make symbolic links of the java binaries (like java, j

Re: How to Write MakeFile ?

1998-11-25 Thread Catalin CLIMOV
Hi, Here is a patch a wrote so you can use "mmake" with SourceNavigator. When you press the "make" button in SN, it will give the filename to the make command, and this may be a problem , especially when you have your sources in a directory structure that reflects the packages. Just pu