I know that you can I assign a DocumentListener and an ActionListener
to a JTextArea.
I know there are standard methods that must be defined when you
implement document listener.
I want to be able to make a scrollable panel that has a large text
area that I can redirect STDOUT and STDERR and read text typed into
this JPanel.
I saw an example that used PipedStreams for STDOUT and STDERR and
made them threads but it has to be an easier way to "print" those
streams to a JPanel without making them PipedStreams.
Any suggestions?