RE: How import affect the performance?

2002-07-02 Thread Radim Tlusty
in the program) affect the performance of a stand alone program? ^^^ Radim At 08:38 AM 6/28/2002 +0200, Radim Tlusty wrote: At 03:20 PM 6/27/2002 +0200, Radim Tlusty wrote: But the following description is misleading

RE: How import affect the performance?

2002-06-28 Thread Radim Tlusty
At 03:20 PM 6/27/2002 +0200, Radim Tlusty wrote: But the following description is misleading: It used to be overhead back in the old days before jar files (circa 95-97). imports used to cause directory lookups, which were slow. Why is this misleading? This was true

RE: How import affect the performance?

2002-06-27 Thread Radim Tlusty
Frank is not right. The import lines are there ONLY for compile purpose. If you look into compiled class file, you will see on begin the constant pool part. There are among others names of all necessary classes with package. So the result: There isn't and can't be any difference between import

RE: How import affect the performance?

2002-06-27 Thread Radim Tlusty
), there shouldn't be a difference. There is no relation between imports and storage of class files. Radim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Frank D. Greco Sent: Thursday, June 27, 2002 2:09 PM To: Radim Tlusty; [EMAIL PROTECTED

RE: JWindow flicker problem

2002-04-12 Thread Radim Tlusty
I solved this problem some time ago. Following hacks helped me: 1. window.setBackground(UIManager.getColor(control)); // of course after setting the right LF 2. to wait some time after adding all components, but before showing content.add(quitButton); try {