JPanel statusPanel = new JPanel();
statusPanel.setSize(new Dimension(320, 190));
statusTextPane = new JTextPane();
statusTextPane.setEditable(false);
statusTextPane.setPreferredSize(new Dimension(320, 190));
DefaultCaret caret = (DefaultCaret)statusTextPane.getCaret();
caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);
JScrollPane scroll = new JScrollPane(statusTextPane);
scroll.setPreferredSize(new Dimension(320, 190));
scroll.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
statusPanel.add(scroll);