* Creates three instances of TextDefinition. And tests the default instanciation and
* the effects of calling setText with an empty String and a String representing a
* component path.
*/
public void createControl() {
TextDefinition ts = new TextDefinition(getShell(), SWT.DEFAULT, (ProjectProvider) null);
TextDefinition ts2 = new TextDefinition(getShell(), SWT.DEFAULT,(ProjectProvider)null);
/*TextDefinition*/ ts3 = new TextDefinition(getShell(), SWT.DEFAULT,(ProjectProvider)null);
ts2.setText(new String());
ts3.setText(new String("{Text/component}"));
Button b = new Button(getShell(),SWT.DEFAULT);
b.addSelectionListener(new SelectionAdapter() {
boolean literal = true;