private void configureUISection() {
   fSection.setLayout(FormLayoutFactory.createClearGridLayout(false, 1));
   GridData data = new GridData(GridData.FILL_HORIZONTAL);
   fSection.setLayoutData(data);
   fSection.setText(PDEUIMessages.SplashProgressSection_progressName);
   fSection.setDescription(PDEUIMessages.SplashProgressSection_progressSectionDesc);
 }
 private Composite createUISectionContainer(Composite parent) {
   Composite client = fToolkit.createComposite(fSection);
   client.setLayout(FormLayoutFactory.createSectionClientGridLayout(false, F_NUM_COLUMNS));
   client.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
   return client;
 }