private void createCleanUpGroup(TabFolder parent) {
Composite group = new Composite(parent, SWT.NONE);
group.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false));
group.setLayout(LayoutUtils.createGridLayout(2, 5, 5, 10, 5, false));
TabItem item = new TabItem(parent, SWT.None);
item.setText("Clean-Up");
item.setControl(group);
/* Explanation Label */
Label explanationLabel = new Label(group, SWT.WRAP);
explanationLabel.setLayoutData(new GridData(SWT.BEGINNING, SWT.BEGINNING, false, false, 2, 1));
explanationLabel.setText("To recover disk space, old news can be permanently deleted.");