I am using org.eclipse.swt.widgets.Text I am doing
Text description = new Text(container, SWT.SINGLE);
description.setEditable(false);
description.setText("long string");
About half of the text shows up in the wizard that I am creating. I see there is a static int called LIMIT in the API. I have not been able to find where it states there is a preset on the number of characters that the Text can hold. I want to expand this to the number of characters that I need.