shellExplorerFilePanel.add(playerFileButton);
contentPane.add(shellExplorerFilePanel, BorderLayout.NORTH);
JPanel statusPane = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0));
final JLabel statusLabel = new JLabel("Document Complete: ");
statusPane.add(statusLabel);
shellExplorer.addShellExplorerListener(new ShellExplorerListener() {
public void documentComplete(ShellExplorerDocumentCompleteEvent e) {
statusLabel.setText("Document Complete: " + e.getLocation());
}
});
contentPane.add(statusPane, BorderLayout.SOUTH);