{
final FormEditorPagePart part = getPart();
final ScrolledForm form = managedForm.getForm();
final Composite body = form.getForm().getBody();
final Presentation presentation = new SwtPresentation( part, null, body.getShell() )
{
@Override
public void render()
{
body.setBackground( getPart().getSwtResourceCache().color( Color.WHITE ) );
body.setBackgroundMode( SWT.INHERIT_DEFAULT );
managedForm.getToolkit().decorateFormHeading( managedForm.getForm().getForm() );
body.setLayout( glayout( 2, 0, 0 ) );
for( final FormComponentPart child : part.getChildParts() )
{
final Presentation childPresentation = child.createPresentation( null, body );
childPresentation.render();
}
final ISapphireDocumentation doc = part.definition().getDocumentation().content();
if( doc != null )