|
Lines 110-117
Link Here
|
| 110 |
projectGroup.setLayout(layout); |
110 |
projectGroup.setLayout(layout); |
| 111 |
projectGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); |
111 |
projectGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); |
| 112 |
|
112 |
|
|
|
113 |
// new project label |
| 114 |
Label projectContentsLabel = new Label(projectGroup,SWT.NONE); |
| 115 |
projectContentsLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.projectContentsLabel")); //$NON-NLS-1$ |
| 116 |
|
| 117 |
GridData labelData = new GridData(); |
| 118 |
labelData.horizontalSpan = 3; |
| 119 |
projectContentsLabel.setLayoutData(labelData); |
| 120 |
|
| 113 |
final Button useDefaultsButton = new Button(projectGroup, SWT.CHECK | SWT.RIGHT); |
121 |
final Button useDefaultsButton = new Button(projectGroup, SWT.CHECK | SWT.RIGHT); |
| 114 |
useDefaultsButton.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.useDefaultLabel")); //$NON-NLS-1$ |
122 |
useDefaultsButton.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.useDefaultLocationLabel")); //$NON-NLS-1$ |
| 115 |
useDefaultsButton.setSelection(this.useDefaults); |
123 |
useDefaultsButton.setSelection(this.useDefaults); |
| 116 |
|
124 |
|
| 117 |
GridData buttonData = new GridData(); |
125 |
GridData buttonData = new GridData(); |
|
Lines 172-178
Link Here
|
| 172 |
|
180 |
|
| 173 |
// location label |
181 |
// location label |
| 174 |
locationLabel = new Label(projectGroup,SWT.NONE); |
182 |
locationLabel = new Label(projectGroup,SWT.NONE); |
| 175 |
locationLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.locationLabel")); //$NON-NLS-1$ |
183 |
locationLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.projectLocationLabel")); //$NON-NLS-1$ |
| 176 |
locationLabel.setEnabled(enabled); |
184 |
locationLabel.setEnabled(enabled); |
| 177 |
|
185 |
|
| 178 |
// project location entry field |
186 |
// project location entry field |