(String text)
| 69 | } |
| 70 | |
| 71 | private void setText(String text) { |
| 72 | text = text != null ? text : ""; |
| 73 | this.text.setText(text); |
| 74 | this.text.pack(); |
| 75 | this.text.setLayoutData(LayoutHelper.formData(Math.max(this.text.getSize().x, 310), SWT.DEFAULT, new FormAttachment(0), null, new FormAttachment(messageLabel), null)); |
| 76 | this.text.setFocus(); |
| 77 | this.text.setSelection(0, text.length()); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Opens the dialog and waits for user to input the data. |
no test coverage detected