*/
public Object createPartControl(Composite parent) {
parent.setLayout(new GridLayout());
parent.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
splitter = new Splitter(parent, SWT.HORIZONTAL);
splitter.setLayout(new FillLayout());
splitter.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
Composite editorContent = new Composite(splitter, SWT.NONE);
editorContent.setLayout(new FillLayout());