@Override
public void createPageContent( Composite parent ) {
mainComposite = new Composite(parent, SWT.NONE);
mainComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
stackLayout = new StackLayout();
mainComposite.setLayout(stackLayout);
noFeatureLabel = new Label(mainComposite, SWT.NONE);
noFeatureLabel.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, false, false));
noFeatureLabel.setText(Messages.SimplePolygonEditorPage_0);