[Solved] Debugging Console in Eclipse [closed]


your main method is empty. put the creation a frameobject in it:

public static void main(String[] args){
  Counter c = new Counter();
  JPanel panel = new JPanel();
  new Frame4(c, panel);
}

1

solved Debugging Console in Eclipse [closed]