package vraag3; import javax.swing.JFrame; @SuppressWarnings("serial") public class ChatMain extends JFrame { public ChatMain(){ this.setSize(400,250); ChatPanel chat = new ChatPanel(); this.add(chat); this.setDefaultCloseOperation(EXIT_ON_CLOSE); this.setVisible(true); chat.run(); } public static void main(String[] args) { new ChatMain(); } }