FillLayout fillLayout = new FillLayout();
fillLayout.type = SWT.HORIZONTAL;
fillLayout.spacing = 5;
sourcePairComposite.setLayout(fillLayout);
}
SourceViewer sourceViewerLeft =
new SourceViewer(sourcePairComposite, null, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
sourceViewerLeft.getTextWidget().setEditable(false);
SourceViewer sourceViewerRight =
new SourceViewer(sourcePairComposite, null, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
sourceViewerRight.getTextWidget().setEditable(false);
{
functionStatusText = new Text(composite, SWT.READ_ONLY | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL);
Display display = composite.getDisplay();
functionStatusText.setBackground(display.getSystemColor(SWT.COLOR_WIDGET_BACKGROUND));