JTextArea text = new JTextArea(); //without parameters
JTextArea text = new JTextArea(10,40); //rows and columns
JTextArea text = new JTextArea( "" ); //text in jtextarea
JScrollPane pScroll = new JScrollPane(text, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);