Rev 576 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
/*
* Copyright (C) 2007 Steve Ratcliffe
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* Author: Steve Ratcliffe
* Create date: 13-Oct-2007
*/
package uk.me.parabola.mkgmap.gui;
import javax.swing.*;
import java.awt.*;
/**
* @author Steve Ratcliffe
*/
public class AppLayout
{
private JPanel panel1
;
public JPanel getRoot
() {
return panel1
;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$
();
}
/**
* Method generated by IntelliJ IDEA GUI Designer
* >>> IMPORTANT!! <<<
* DO NOT edit this method OR call it in your code!
*
* @noinspection ALL
*/
private void $$$setupUI$$$
() {
panel1 =
new JPanel();
panel1.
setLayout(new BorderLayout(0,
0));
panel1.
setAlignmentX(0.0f
);
panel1.
setAlignmentY(0.0f
);
panel1.
setBorder(BorderFactory.
createTitledBorder(BorderFactory.
createLineBorder(Color.
black),
null));
final MainFileList nestedForm1 =
new MainFileList
();
panel1.
add(nestedForm1.$$$getRootComponent$$$
(),
BorderLayout.
NORTH);
final FileOptions nestedForm2 =
new FileOptions
();
panel1.
add(nestedForm2.$$$getRootComponent$$$
(),
BorderLayout.
CENTER);
}
/**
* @noinspection ALL
*/
public JComponent $$$getRootComponent$$$
() {
return panel1
;
}
}