// for viewing\r
JLabel label = new JLabel("Enter URL of Input File");\r
final JComboBox history = new JComboBox();\r
- JPanel panel = new JPanel(new BorderLayout());\r
- panel.add(label, BorderLayout.NORTH);\r
- panel.add(history, BorderLayout.CENTER);\r
+\r
+ JPanel panel = new JPanel(new GridLayout(2,1));\r
+ panel.add(label);\r
+ panel.add(history);\r
history.setPreferredSize(new Dimension(400,20));\r
history.setEditable(true);\r
history.addItem("http://www.");\r