Re: Printing with 1.2

1999-11-12 Thread Pavel Tolkachev
e) to read them. Hope this will help. All the Best Pavel Greg Tomalesky wrote: > > Hi Gang: > > Does anyone know where I can get some examples of printing under JDK > 1.2? > > Thanks > Greg > > -

Re: Still looking for a solution.

1999-10-21 Thread Pavel Tolkachev
ce the solution for the problem, I have no enough information about the purposes of your application. All the Best Pavel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: EventListener

1999-08-23 Thread Pavel Tolkachev
void actionPerformed(ActionEvent Ae){ JFrame.this.setBounds(...); //... } }); Hope this helps All the Best Pavel ALPESH KOTHARI wrote: > > Hello all, > > I am developing a GUI using JAVA 2 on linux. > > There is one menuitem, which when pressed sho

Re: Frame Layout

1999-08-16 Thread Pavel Tolkachev
as Window property in public API and then to implement Frames and Dialogs on pure java deriving them from Window. Unfortunately Sun went other way :(. Pavel [EMAIL PROTECTED] wrote: > > Umm... is there any particular reason you are using a Frame instead of a > Window? > > On S

Re: final variables in constructors

1999-07-15 Thread Pavel Tolkachev
during class, not instance initialization). Hope this helps All the Best Pavel Kontorotsui wrote: > > I wonder why if I write this: > > aClass extends aSuperClass > { > aClass() > { > super(1); > } > } > > where the superclass is: >

Unidentified subject!

1999-06-01 Thread Pavel Kessler
can't load javax.swing.plaf.metal.MetalLookAndFeel The trace of already loaded classes (see attachement) shows, that this class was already loaded ! Do you have any idea(s) what may be the cause of this problem ? Sincerely Pavel Kessler ##### Pavel Kessler Am Grabe

Re: indeo avi module & rtf-reader for java-linux?

1999-05-27 Thread Pavel Tolkachev
Bruno Boettcher wrote: > 2. question didn't found anything in java to display rtf format, maybe > somebody could redirect me in the right direction? This should surely exist... Swing javax.swing.text package includes RTF support. I am not sure whether it is full enough tho

[Slightly off-topic] Re: How to make a system call in Java

1999-05-13 Thread Pavel Tolkachev
STDERR line number %d\n", i)} } Hopefully this information can be useful to somebody. Pavel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: A bug(?) report

1999-05-07 Thread Pavel Tolkachev
der will be reverse to the listener adding order. All the Best Pavel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Problems appending to a file

1999-04-28 Thread Pavel Tolkachev
{ System.err.println(e.toString()); } } Or you can store the number of object before objects if it is more relevant for your application. Hope this helps Pavel > public static void main(String argv[]) > { > try > { >

Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Pavel Tolkachev
; mvh > mike. > The following options must work for both 1.1 and 1.2 (I did not try it on Linux though, only on NT): -Djava.compiler= Pavel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Unidentified subject!

1999-03-10 Thread Pavel Kessler
linkage (at least for the preview versions), or distribute the library in your package ?     Pavel Kessler ==      ... ...   Dr.  Pavel Kessler  .    * .    .  Software Department   .   . .   .   Bruker

java-linux@java.blackdown.org

1999-01-18 Thread Pavel Tolkachev
lean isSupportedLookAndFeel() { return isNativeLookAndFeel(); } I am far from knowledge whether it is lawful for you to change it to 'return true' and to try how it looks. All the Best Pavel Yago Diaz wrote: > > I have download the swing-1.1 package from javasoft and I installed it on my

Re: Is this a JVM bug? Why is my local variable not initialized?

1999-01-06 Thread Pavel Tolkachev
wise, this procedure completes normally. cut here- Note that item 4 (executing instance vairable initializers) follows 2 and 3 (superclass constructor calls). I did not read Bruce Eckel's book so I cannot say whether he is wrong or just misinterpreted. Hope this helps All the Best

Re: Request For OS Sys Props [was Re: Reading (All) EnvVar

1998-12-16 Thread Pavel Tolkachev
portability issues, just poor registry implementation in NT. All the Best Pavel > > Thanks. > > I had no know idea if "." prefix directories are reasonable of not > reasonable on Win 95/98/NT. Note this is just UNIX convention, that makes > sense for UNIX like oper

Re: Request For OS Sys Props [was Re: Reading (All) EnvVars ]

1998-12-16 Thread Pavel Tolkachev
PATH% (it is so usual for Microsoft to change the meaning of well known words in their products ;-) ). All the Best Pavel [EMAIL PROTECTED] wrote: > > Right then. > > I notice that the GIMP is very in that it creates a `~/.gimp subdirectory' > to place multiple configurations.

Re: Reading (All) Environment Variables in W95/NT

1998-12-14 Thread Pavel Tolkachev
ode: Properties p = new Properties(); p.load(new FileInputStream(System.getProperty("env.file")); // Hope this helps. All the Best Pavel [EMAIL PROTECTED] wrote: > > I am getting some requests from NT users on an application that I wrote on > a Java/Linux environment. I have a Java appl

Re: swing-1.1beta3

1998-12-03 Thread Pavel Tolkachev
your CLASSPATH (note that it is not only directory but full path to swingall.jar). Adding SWING_HOME to PATH seems to me excessive such as you probably do not want start executable files resided in this directory (there is no such files there). Hope this helps Pavel

Re: Using "setSize" with a Frame.

1998-11-29 Thread Pavel Tolkachev
ur setSize() from doing its work. Hope this helps Pavel

Re: Deprecated `Thread.stop()' in forthcoming JDK 1.2. Why?

1998-11-24 Thread Pavel Tolkachev
ons. Again, imho code running in thread must know that it is interruptable and provide API for well behaving interrupt (via timeout as DatagramSocket.setSoTimeout() does or directly as java.sql.Statement.cancel() does). Pavel

Re: Deprecated `Thread.stop()' in forthcoming JDK 1.2. Why?

1998-11-23 Thread Pavel Tolkachev
} ioResult = System.in.read(); t.interrupt(); } catch(InterruptedException e) { System.out.println("Reading has been interrupted!"); } } catch(java.io.IOException e) { e.printStackTrace(); } System.out.println("IOResult:" + ioResult); } } ---cut here All the Best Pavel

Re: Basic installation. Please Help.

1998-11-17 Thread Pavel Tolkachev
probably concatenating command line from other environment variables not deprecated by Sun like SWING_RELEASE_PATH :). For development (where we need to use java instead of jre) all should be put in -classpath, I beleive. Just my 2cents Pavel

Re: Deprecated `Thread.stop()' in forthcoming JDK 1.2. Wh

1998-11-13 Thread Pavel Tolkachev
rent timeouts depending on expected query complexity. Pavel

Re: Deprecated `Thread.stop()' in forthcoming JDK 1.2. Why?

1998-11-13 Thread Pavel Tolkachev
analog of such unnormal killer). What do you think it is strange here? See also http://java.sun.com/products/jdk/1.2/docs/guide/misc/threadPrimitiveDeprecation.html Hope this help Pavel

Re: Java language question: static classes ?

1998-10-16 Thread Pavel
d requires one additional constructor parameter of A type (in default "no-arg" constructor) if you create it outside of A class scope. C.D class is just like usual Java top level public class. That's all I know about static classes Hope this will help. Pavel // >

Re: Java language question: static classes ?

1998-10-16 Thread Pavel
lps. Pavel

Re: Can't find class etc etc etc.

1998-09-24 Thread Pavel
e from this list To the footer of each letter distributing via this maillist? Just my 2 cents. All the Best Pavel

Re: RS232/Java

1998-09-04 Thread Pavel
If you are on Linux platform look also at http://www.mail-archive.com/java-linux@java.blackdown.org/msg01184.html Pavel. Jim Watson wrote: > > Dear All, > > I know that this question isn't really related to java/Linux but I could do > with a few pointers.. >

Re: Regexp utility classes..

1998-06-30 Thread Pavel
I had some references but now have managed to find only one (but the best). It is free (but not GNU and no sources). Manages full Perl5 regular expression syntax. OROMatcher. http://www.oroinc.com/ All the Best Pavel Per Widerlund wrote: > > Hello List.. > > This may not be the

Re: out of memory

1998-06-18 Thread Pavel
You should probably increase -mx option value when running java. AFAIK default value is 32M All the Best Pavel Richard Hall wrote: > > I've just begun using JDK1.1.6 on my Debian 2.0.29 machine, and the > compiler often, but not always claims to be out of memory. top says: >

Re: Building nice looking forms with layout managers

1998-05-28 Thread Pavel
hesitate to ask me if you have problems with it. Pavel Wim Ceulemans wrote: > > Hi > > Thanks everyone for responding to my question of passing classes as > parameters. I've successfully used the java.lang.reflect API to dynamically > create instances even with parame

Re: Passing classes as parameters

1998-05-26 Thread Pavel
alize your object with a constructor with parameters. All the Best Pavel Wim Ceulemans wrote: > > Hi > > Does anyone has experience in passing a class as a parameter in java? > > I want to do something like call a method with as parameter a class name and > then create instanc

Re: jdk 1.2

1998-05-25 Thread Pavel
d by their license -- read it carefully before doing this). All the Best Pavel [EMAIL PROTECTED] wrote: > > Hi, > > will there be a jdk1.2 port in the near future (even for the betas)? I'd > like to use collections and I'm not willing to switch to NT :-( > > cheers, >