FillLayout layout = new FillLayout();
mainWindow.setLayout(layout);
MForm target = new Target();
MFormModel model = new FormModelBuilder( MSingleton.instance().getActivator(), target, FormModelBuilder.DEFAULT_SCHEMA );
MFormSwtControl control = new MFormSwtControl( model );
control.createControl(mainWindow);
mainWindow.setText("SWT");
mainWindow.setSize(300, 200);
mainWindow.open();