If i have Created this JTextArea and Pre-set it to editable(False)
JTextArea text=new JTextArea("",60,50);
JScrollPane pane= new JScrollPane(text);
text.setText("Testing");
panel.add(pane);
text.setEditable(false);
Anyway i can Reset the Text in it???
JTextArea text=new JTextArea("",60,50);
JScrollPane pane= new JScrollPane(text);
text.setText("Testing");
panel.add(pane);
text.setEditable(false);
Anyway i can Reset the Text in it???