I got a List
:
final List list = new List(shell, SWT.BORDER | SWT.V_SCROLL | SWT.MULTI );
Which I try to add text too including "\n"
:
list.add("123 \n 1234");
The result is an list item with only the text
123 1234
in it but I want the result:
123
1234
How can I make this possible?