Package javax.ejb does not exist !

2003-06-02 Thread Michael S Daines
When I try to compile an EJB, I get this message: xxx.java:3: package javax.egb does not exist import javax.ejb.*; ^ 1 error How do I solve this problem? I tried copying all the j2ee files into the jdk directory, but this didn't change anything. msd More people have died in the

Re: [maybe OT], .class - .java

2003-06-02 Thread Thomas Fogwill
On Sat, 2003-05-31 at 15:22, Daniel Bonniot wrote: Hi, $ apt-cache search java decompiler jad - The fast Java Decompiler $ apt-cache show jad Description: The fast Java Decompiler Jad is a Java decompiler, i.e. program that reads one or more Java class files and converts them into Java

Re: Java AWT for Debian?

2003-06-02 Thread José Luis Tallón
At 17:17 02/06/2003 +0200, Arnaud Vandyck wrote: José Luis Tallón [EMAIL PROTECTED] wrote: Hi all Hi! Regarding my recently packaged webCDwriter [ http://wwwhomes.uni-bielefeld.de/jhaeger/webCDwriter/ ], i have found *the* problem: It needs AWT to be compiled

Re: Java AWT for Debian?

2003-06-02 Thread Juergen Kreileder
[EMAIL PROTECTED] writes: The offending code ( in configure ) is this: ( I am not a Java programmer myself , BTW ) 8 -- cat Test0.java EOF class Test0 { static int foo { return 0; } This should be foo(). } EOF cat Test.java EOF class

Re: Java AWT for Debian?

2003-06-02 Thread José Luis Tallón
At 19:29 02/06/2003 +0200, Daniel Bonniot wrote: cat Test0.java EOF class Test0 { static int foo { return 0; } } EOF I don't believe this is valid Java source, because of missing parentheses. It should be: ... static int foo () { return 0; } Obviously not valid -- My fault . The

Re: Java AWT for Debian?

2003-06-02 Thread José Luis Tallón
At 19:54 02/06/2003 +0200, Juergen Kreileder wrote: [EMAIL PROTECTED] writes: The offending code ( in configure ) is this: ( I am not a Java programmer myself , BTW ) 8 -- cat Test0.java EOF class Test0 { static int foo { return 0; } This should

Re: Java AWT for Debian?

2003-06-02 Thread Matt Zimmerman
On Mon, Jun 02, 2003 at 07:54:38PM +0200, Juergen Kreileder wrote: [EMAIL PROTECTED] writes: cat Test.java EOF class Test { public static void main(String[] args) { Test0.foo(); new java.awt.Button(); new

Re: Java AWT for Debian?

2003-06-02 Thread T. Alexander Popiel
In message: [EMAIL PROTECTED] Matt Zimmerman [EMAIL PROTECTED] writes: On Mon, Jun 02, 2003 at 07:54:38PM +0200, Juergen Kreileder wrote: [EMAIL PROTECTED] writes: cat Test.java EOF class Test { public static void main(String[] args) {

Re: Java AWT for Debian?

2003-06-02 Thread Matt Zimmerman
On Mon, Jun 02, 2003 at 02:09:28PM -0700, T. Alexander Popiel wrote: In message: [EMAIL PROTECTED] Matt Zimmerman [EMAIL PROTECTED] writes: Doesn't it also require an import statement? No. Import statements are syntactic sugar allowing you to use the unqualified class name

Re: Java AWT for Debian?

2003-06-02 Thread Arnaud Vandyck
Matt Zimmerman [EMAIL PROTECTED] wrote: On Mon, Jun 02, 2003 at 07:54:38PM +0200, Juergen Kreileder wrote: [EMAIL PROTECTED] writes: cat Test.java EOF class Test { public static void main(String[] args) { Test0.foo(); new