Re: javac can not find com.sun.java.swing.JApplet class

1999-04-03 Thread Anil kumar
On Wed, 31 Mar 1999, Richard James wrote: > I am new to java and the 1.2 JDK. I am running RedHat 5.2 and the > Blackdown JDK1.2-v1pre-release. The install went fine. I have finally > figured out the libstdc++ link and I can successfully compile command > line applications. > > However, I am get

Re: javac can not find com.sun.java.swing.JApplet class

1999-04-03 Thread Jeff Galyan
com.sun.java.swing.* have been renamed to javax.swing.*. Update your import declarations and you should be fine. > Richard James wrote: > > I am new to java and the 1.2 JDK. I am running RedHat 5.2 and the > Blackdown JDK1.2-v1pre-release. The install went fine. I have finally > figured out

Re: javac can not find com.sun.java.swing.JApplet class

1999-04-01 Thread Troy Wu
How about checking the JDK-1.2 docs...? The package name is: javax.swing.* not com.sun.java.swing.* On Wed, 31 Mar 1999, Richard James wrote: public class RootApplet extends com.sun.java.swing.JApplet { --

javac can not find com.sun.java.swing.JApplet class

1999-03-31 Thread Richard James
I am new to java and the 1.2 JDK. I am running RedHat 5.2 and theBlackdown JDK1.2-v1pre-release. The install went fine. I have finallyfigured out the libstdc++ link and I can successfully compile commandline applications.   However, I am getting the following error on this simple applet. An