Added path's

works but allot is edited
This commit is contained in:
Wesley
2015-04-02 23:31:48 +02:00
parent 040859ac2a
commit a45d37a4d5
11 changed files with 366 additions and 107 deletions
+7 -1
View File
@@ -11,6 +11,8 @@ public class Window extends JFrame
{
private static final long serialVersionUID = -1324363758675184283L;
private Panel fp;
Window() {
super("Festival Plannner");
setDefaultCloseOperation(EXIT_ON_CLOSE);
@@ -20,7 +22,7 @@ public class Window extends JFrame
// CONTENT PANELS
JPanel contentPanel = new JPanel(new BorderLayout());
PropertiesPanel pp = new PropertiesPanel();
Panel fp = new Panel(pp);
fp = new Panel(pp);
contentPanel.add(fp, BorderLayout.CENTER);
contentPanel.add(pp, BorderLayout.EAST);
@@ -35,4 +37,8 @@ public class Window extends JFrame
setFocusable(true);
setVisible(true);
}
public Panel getPanel() {
return fp;
}
}