|
Lines 33-40
Link Here
|
| 33 |
|
33 |
|
| 34 |
private static final String MODULE_NAME_UI = J2EEUIMessages.getResourceString(J2EEUIMessages.NAME_LABEL); |
34 |
private static final String MODULE_NAME_UI = J2EEUIMessages.getResourceString(J2EEUIMessages.NAME_LABEL); |
| 35 |
|
35 |
|
| 36 |
private Text configFolder; |
|
|
| 37 |
private Label configFolderLabel; |
| 38 |
protected Button addClient; |
36 |
protected Button addClient; |
| 39 |
protected Text clientNameText = null; |
37 |
protected Text clientNameText = null; |
| 40 |
private Label clientJarURILabel; |
38 |
private Label clientJarURILabel; |
|
Lines 58-72
Link Here
|
| 58 |
|
56 |
|
| 59 |
//setupEarControl(composite); |
57 |
//setupEarControl(composite); |
| 60 |
|
58 |
|
| 61 |
this.configFolderLabel = new Label(composite, SWT.NONE); |
|
|
| 62 |
this.configFolderLabel.setText(J2EEUIMessages.getResourceString(J2EEUIMessages.SOURCEFOLDER)); |
| 63 |
this.configFolderLabel.setLayoutData(gdhfill()); |
| 64 |
|
| 65 |
this.configFolder = new Text(composite, SWT.BORDER); |
| 66 |
this.configFolder.setLayoutData(gdhfill()); |
| 67 |
this.configFolder.setData("label", this.configFolderLabel); //$NON-NLS-1$ |
| 68 |
synchHelper.synchText(configFolder, CONFIG_FOLDER, null); |
| 69 |
|
| 70 |
createEJBClientGroup( composite ); |
59 |
createEJBClientGroup( composite ); |
| 71 |
createProjectNameGroup( composite ); |
60 |
createProjectNameGroup( composite ); |
| 72 |
createClientJarURISection( composite ); |
61 |
createClientJarURISection( composite ); |