/** Initializes the frame.
* @param connected Whether to connect to the data pipeline.
* @throws java.sql.SQLException If an error occured. */
private void init(boolean connected) throws SQLException
{
this.panel = new MainPanel(connected);
this.initSize();
super.setLayout(new BorderLayout());
super.add(this.panel, BorderLayout.CENTER);
super.setTitle("ADRS");
super.addWindowListener(EventController.getWindowListener());