summaryrefslogtreecommitdiff
path: root/src/client/MainWindow.java
blob: b6020d2a920c5179dc963bdf018150a1d54c397f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
	}
	
}