_fileTextField = new FileTextField(new ViewFileAction());
_fileViewingArea = new JTextArea();
JScrollPane scrollPaneAroundTextArea = new JScrollPane(_fileViewingArea);
scrollPaneAroundTextArea.setBorder(BorderFactory.createLoweredBevelBorder());
JPanel newContentPane = new JPanel(new BorderLayout());
newContentPane.add(_fileTextField, BorderLayout.NORTH);
newContentPane.add(scrollPaneAroundTextArea, BorderLayout.CENTER);
setContentPane(newContentPane);
setSize(250, 300);