> javac hallo.java
> hallo.java:2: Public class fenster must be defined in a file called
> "fenster.java".
You seemed to have missed what the error says. just rename the file to
fenster.java. All public classes must be in a file with the same name. You
can add private ones to the file without cha
>hi,
I'm learning java. But when I compiled this code in the console
import java.awt.*;
public class fenster extends Frame
{
public static void main (String args[])
{
fenster hauptfenster=new fenster();
hauptfenster.reSize (300,300);
hauptfenster.setLocation