[1151] in java-interest
What is this error?
daemon@ATHENA.MIT.EDU (sbk@netcom.com)
Fri Aug 25 03:18:20 1995
From: sbk@netcom.com
To: java-interest@java.sun.com
Date: Thu, 24 Aug 1995 15:52:25 -0700 (PDT)
Cc: sbk@netcom.com ()
I don't understand this error, what am I doing wrong? This is the alpha
3 version.
--
% uname -a
SunOS mizar 5.4 generic sun4m sparc
% cat a.java
import awt.*;
import java.lang.*;
public class a extends Frame
{
public a(WServer ws)
{
System.out.println("Starting");
super(ws, true, null, 100, 100, Color.lightGray);
}
}
% javac a.java
a.java:6: No constructor matching Frame() found in class awt.Frame.
public a(WServer ws)
^
1 error
% cat b.java
import awt.*;
import java.lang.*;
public class b extends Frame
{
public b(WServer ws)
{
super(ws, true, null, 100, 100, Color.lightGray);
System.out.println("Starting");
}
}
% javac b.java
%
-
Note to Sun employees: this is an EXTERNAL mailing list!
Info: send 'help' to java-interest-request@java.sun.com