label.setBackground(_backgroundColor);
label.setForeground(_textColor);
return label;
}
private SashForm newSashForm(Composite parent) {
CustomSashForm sash = new CustomSashForm(parent, SWT.VERTICAL|SWT.SMOOTH);
sash.setBackground(_backgroundColor);
return sash;
}