Composite composite = toolkit.createComposite( parent );
composite.setLayout( new GridLayout() );
composite.setLayoutData( new GridData( SWT.CENTER, SWT.CENTER, true, true ) );
ProgressBar progressBar = new ProgressBar( composite, SWT.INDETERMINATE );
progressBar.setLayoutData( new GridData( SWT.CENTER, SWT.NONE, false, false ) );
Label label = toolkit.createLabel( composite,
Messages.getString( "LoadingPage.LoadingTheConfigurationPleaseWait" ) ); //$NON-NLS-1$
label.setLayoutData( new GridData( SWT.CENTER, SWT.NONE, false, false ) );
}