Hallo,
ich bin neu hier und habe große Probleme mit Eclipse. Wieso márkiert er mir bei diesem Code "MyFrame" gelb, der Anfang sollte ausreichen:
und sagt mir, dass: "The serializable class MyFrame does not declare a static final serialVersionUID field of Type long"?
Er gibt auch diese Fehlermeldung:
Was bedeutet das?
ich bin neu hier und habe große Probleme mit Eclipse. Wieso márkiert er mir bei diesem Code "MyFrame" gelb, der Anfang sollte ausreichen:
Code:
import java.awt.*;
import java.awt.event.*;
public class MyFrame extends Frame implements MouseListener, WindowListener
{
und sagt mir, dass: "The serializable class MyFrame does not declare a static final serialVersionUID field of Type long"?
Er gibt auch diese Fehlermeldung:
java.lang.Error: Unresolved compilation problems:
MyFrame cannot be resolved to a type
Window cannot be resolved
MyFrame cannot be resolved to a type
Cannot make a static reference to the non-static method setVisible(boolean) from the type Window
at MyApplet.<init>(MyApplet.java:8)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at sun.applet.AppletPanel.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Was bedeutet das?