Composite body = managedForm.getForm().getBody();
body.setLayout(FormLayoutFactory.createFormTableWrapLayout(true, 2));
Composite left = toolkit.createComposite(body);
left.setLayout(FormLayoutFactory.createFormPaneTableWrapLayout(false, 1));
left.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));
Section section = Parts.createStaticSection(toolkit, left, "General Attributes");
Composite container = Parts.createStaticSectionClient(toolkit, section);
// Generates a NullPrt
IActionBars actionBars = /*getPage().getEditor().*/getEditorSite().getActionBars();
createNameEntry(container, toolkit, actionBars);
createCmtEntry(container, toolkit, null);
createIconIdxEntry(container, toolkit, null);
createLabelIdxEntry(container, toolkit, null);
section.setClient(container);
Composite right = toolkit.createComposite(body);
right.setLayout(FormLayoutFactory.createFormPaneTableWrapLayout(false, 1));
right.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));
Section sectionR = Parts.createStaticSection(toolkit, right, "Informations");
Composite cnt2 = Parts.createStaticSectionClient(toolkit, sectionR);
_fMainTable = new FormEntry(cnt2, toolkit, "Main Table", SWT.SINGLE);