private void createFileEditor(final Composite parent, String string) {
Group section = SWTFactory.createGroup(parent, "Evaluate Clojure source file(s)",
2, 1, GridData.FILL_BOTH);
sourceFilesViewer = new TableViewer(section);
sourceFilesViewer.setLabelProvider(new DecoratingLabelProvider(
new WorkbenchLabelProvider(),CCWPlugin.getDefault().getWorkbench()
.getDecoratorManager().getLabelDecorator()));
sourceFilesViewer.setContentProvider(new ArrayContentProvider());
sourceFilesViewer.getTable().setLayoutData(new GridData(GridData.FILL_BOTH));