}
public void createPartControl(Composite container) {
Text text = new Text(container, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
IntroModelRoot model = IntroPlugin.getDefault().getIntroModelRoot();
IntroModelSerializer serializer = new IntroModelSerializer(model);
text.setText(serializer.toString());
addToolBarActions();
}