added stuff

This commit is contained in:
unknown
2015-03-17 12:23:43 +01:00
parent 87bf6d9295
commit 2f53d1353f
35 changed files with 1465 additions and 195 deletions
+6 -2
View File
@@ -7,6 +7,8 @@ import javax.swing.JPanel;
public class Window extends JFrame {
private static final long serialVersionUID = -1324363758675184283L;
Panel fp;
Window()
{
@@ -17,8 +19,10 @@ public class Window extends JFrame {
//CONTENT PANELS
JPanel contentPanel = new JPanel(new BorderLayout());
Panel fp = new Panel();
PropertiesPanel pp = new PropertiesPanel();
fp = new Panel(pp);
contentPanel.add(fp, BorderLayout.CENTER);
contentPanel.add(pp, BorderLayout.EAST);
setContentPane(contentPanel);
//END CONTENT PANELS
@@ -31,4 +35,4 @@ public class Window extends JFrame {
setFocusable(true);
setVisible(true);
}
}
}