|
Lines 291-297
Link Here
|
| 291 |
|
291 |
|
| 292 |
private Composite createEnableParticipantModelProvidersPane(Composite parent) { |
292 |
private Composite createEnableParticipantModelProvidersPane(Composite parent) { |
| 293 |
Composite composite = new Composite(parent, SWT.NONE); |
293 |
Composite composite = new Composite(parent, SWT.NONE); |
| 294 |
composite.setBackground(getBackgroundColor()); |
294 |
composite.setBackground(getBackgroundColor2()); |
| 295 |
GridLayout layout = new GridLayout(); |
295 |
GridLayout layout = new GridLayout(); |
| 296 |
layout.numColumns = 2; |
296 |
layout.numColumns = 2; |
| 297 |
composite.setLayout(layout); |
297 |
composite.setLayout(layout); |
|
Lines 358-364
Link Here
|
| 358 |
|
358 |
|
| 359 |
private Composite getInitializationPane(Composite parent) { |
359 |
private Composite getInitializationPane(Composite parent) { |
| 360 |
Composite composite = new Composite(parent, SWT.NONE); |
360 |
Composite composite = new Composite(parent, SWT.NONE); |
| 361 |
composite.setBackground(getBackgroundColor()); |
361 |
composite.setBackground(getBackgroundColor2()); |
| 362 |
GridLayout layout = new GridLayout(); |
362 |
GridLayout layout = new GridLayout(); |
| 363 |
layout.numColumns = 2; |
363 |
layout.numColumns = 2; |
| 364 |
composite.setLayout(layout); |
364 |
composite.setLayout(layout); |
|
Lines 417-423
Link Here
|
| 417 |
|
417 |
|
| 418 |
private Composite getInitializingMessagePane(Composite parent) { |
418 |
private Composite getInitializingMessagePane(Composite parent) { |
| 419 |
Composite composite = new Composite(parent, SWT.NONE); |
419 |
Composite composite = new Composite(parent, SWT.NONE); |
| 420 |
composite.setBackground(getBackgroundColor()); |
420 |
composite.setBackground(getBackgroundColor2()); |
| 421 |
GridLayout layout = new GridLayout(); |
421 |
GridLayout layout = new GridLayout(); |
| 422 |
layout.numColumns = 2; |
422 |
layout.numColumns = 2; |
| 423 |
composite.setLayout(layout); |
423 |
composite.setLayout(layout); |
|
Lines 442-448
Link Here
|
| 442 |
|
442 |
|
| 443 |
private Composite getPointerToModel(Composite parent, final ModelProvider provider, String oldId) { |
443 |
private Composite getPointerToModel(Composite parent, final ModelProvider provider, String oldId) { |
| 444 |
Composite composite = new Composite(parent, SWT.NONE); |
444 |
Composite composite = new Composite(parent, SWT.NONE); |
| 445 |
composite.setBackground(getBackgroundColor()); |
445 |
composite.setBackground(getBackgroundColor2()); |
| 446 |
GridLayout layout = new GridLayout(); |
446 |
GridLayout layout = new GridLayout(); |
| 447 |
layout.numColumns = 2; |
447 |
layout.numColumns = 2; |
| 448 |
composite.setLayout(layout); |
448 |
composite.setLayout(layout); |
|
Lines 532-538
Link Here
|
| 532 |
|
532 |
|
| 533 |
private Composite getErrorComposite(Composite parent) { |
533 |
private Composite getErrorComposite(Composite parent) { |
| 534 |
Composite composite = new Composite(parent, SWT.NONE); |
534 |
Composite composite = new Composite(parent, SWT.NONE); |
| 535 |
composite.setBackground(getBackgroundColor()); |
535 |
composite.setBackground(getBackgroundColor2()); |
| 536 |
GridLayout layout = new GridLayout(); |
536 |
GridLayout layout = new GridLayout(); |
| 537 |
layout.numColumns = 2; |
537 |
layout.numColumns = 2; |
| 538 |
composite.setLayout(layout); |
538 |
composite.setLayout(layout); |