// Create the factory pane
final JScrollPane factoryPane = new JScrollPane(input);
factoryPane.setPreferredSize(new Dimension(320, 240));
// Create the info pane
final AsteroidsInfoPane infoPane = this.asteroidsInfoPane;
infoPane.setPreferredSize(new Dimension(210, 240));
// Create the split pane housing the factory pane and info pane
final JSplitPane splitPane = this.splitPane = new JSplitPane(
JSplitPane.HORIZONTAL_SPLIT,
factoryPane, infoPane);