I have a Java program that has a BorderLayout and so far is working fine.
I want to add a JTextArea below that to display out put after I hit the run button.
Can some one show me an example of the BEST way to accomplish what I want to do?
Should I define a GridLayout of 2X1 with my BorderLayout up top and then my JTextArea underneath that?
I am open to suggestions…
here is an image of what I have so far:

below this — I want to have a text area that will capture the out put once I click the run button.
As I stated in my comment…what about something like this:
By adding your
JPanelandJTextAreaonJSplitPane, yourJTextAreawill be in role of some kind of console, which is, if I understood correctly, goal of your question.