summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/gui/SimpleInternalFrame.java
blob: 61c6702ebd0f99d9a61078b1324ebc7e9a46d29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package bjc.utils.gui;

import javax.swing.JInternalFrame;

public class SimpleInternalFrame extends JInternalFrame {
	private static final long serialVersionUID = -2966801321260716617L;

	public SimpleInternalFrame() {
		super();
	}

	public SimpleInternalFrame(String title) {
		super(title);
	}

	protected void setupFrame() {
		setSize(320, 240);

		setResizable(true);

		setClosable(true);
		setMaximizable(true);
		setIconifiable(true);
	}

}