package org.manzerbredes.client; import java.awt.EventQueue; import javax.swing.JFrame; public class MainWindow extends JFrame { public MainWindow(){ this.initUI(); this.setVisible(true); } private void initUI(){ this.setTitle("Open KLM"); this.setSize(700, 500); setLocationRelativeTo(null); setDefaultCloseOperation(EXIT_ON_CLOSE); } }