public SplashConfigurationSection(PDEFormPage page, Composite parent) {
   super(page, parent, Section.DESCRIPTION);
   fFieldTemplateCombo = null;
   fControlDecoration = null;
   createClient(getSection(), page.getEditor().getToolkit());
 }
 /**
  * @param page
  * @param parent
  * @param style
  */
 public LinkSection(PDEFormPage page, Composite parent, int style) {
   super(page, parent, style);
   FormToolkit toolkit = page.getManagedForm().getToolkit();
   linkHandler = new LinkHandler();
   createClient(getSection(), toolkit);
 }
Example #3
0
 public GeneralInfoSection(PDEFormPage page, Composite parent) {
   super(page, parent, Section.DESCRIPTION);
   createClient(getSection(), page.getEditor().getToolkit());
 }