My question is with reference to this post here JTextField : How to set text on the left of JTextField when text too long
If the string is too long, is there any way to display the text in the next subsequent lines instead of a single line?
Right now, it displays the string as
|----------------------|
| JTextField example ..|
|----------------------|
Is there any way i can make it like this?
|----------------------|
| JTextField example ..|
|..continue string.....|
|.........end of string|
|----------------------|