};
Composite settingsContainer = new Composite(tabFolder, SWT.NONE);
settingsContainer.setLayout(new GridLayout(1, false));
CLabel userSettingsLabel = new CLabel(settingsContainer, SWT.SHADOW_ETCHED_IN);
userSettingsLabel.setText("User settings");
userSettingsLabel.setFont(new Font(null, "Tahoma", 8, SWT.BOLD));
userSettingsLabel.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false, 3, 1));
userSettingsLabel.setBackground(labelColor, new int[] { 100 });
Group userContainer = new Group(settingsContainer, SWT.NONE);
userContainer.setLayout(containerLayout);
CLabel serverSettingsLabel = new CLabel(settingsContainer, SWT.SHADOW_ETCHED_IN);
serverSettingsLabel.setText("Server settings");
serverSettingsLabel.setFont(new Font(null, "Tahoma", 8, SWT.BOLD));
serverSettingsLabel.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false, 3, 1));
serverSettingsLabel.setBackground(labelColor, new int[] { 100 });
Group serverContainer = new Group(settingsContainer, SWT.NONE);
serverContainer.setLayout(containerLayout);
CLabel applicationSettingsLabel = new CLabel(settingsContainer, SWT.SHADOW_ETCHED_IN);
applicationSettingsLabel.setText("Application settings");
applicationSettingsLabel.setFont(new Font(null, "Tahoma", 8, SWT.BOLD));
applicationSettingsLabel.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false, 3, 1));
applicationSettingsLabel.setBackground(labelColor, new int[] { 100 });
Group applicationContainer = new Group(settingsContainer, SWT.NONE);
applicationContainer.setLayout(new GridLayout(3, false));
/** User settings */