Package org.eclipse.ui.forms

Examples of org.eclipse.ui.forms.SectionPart


    editor.setFileDirty();
    editor.getTypePage().markStale();
    editor.getIndexesPage().markStale();
    editor.getCapabilityPage().markStale();
    SectionPart s = editor.getParameterPage().getParameterDelegatesSection();
    if (null != s)
      s.markStale();
    editor.getResourcesPage().markStale();
  }
View Full Code Here


  @Override
  protected void createMasterPart(IManagedForm managedForm, Composite parent) {
    super.createMasterPart(managedForm, parent);
    Composite container = getMasterPart().getSection().getParent();
    SectionPart templatePart = createTemplateSectionPart(container, managedForm.getToolkit(), Section.TITLE_BAR);
    if (templatePart != null) {
      managedForm.addPart(templatePart);
    }
  }
View Full Code Here

      // We wrap the section part inside an empty composite so that we can
      // apply TableWrapData to the section part and constrain it's
      // maximum size. Applying the TableWrapData directly to the section
      // part would otherwise cause a ClassCastException.

      SectionPart sectionPart = new SectionPart(wrapper, toolkit, style);
      Section templateSection = sectionPart.getSection();
      templateSection
          .setText(Messages.getString("AbstractConfigMasterDetailsBlock.COMMON_ACTIONS_SECTION_TITLE")); //$NON-NLS-1$

      ScrolledComposite scroll = new ScrolledComposite(templateSection, SWT.V_SCROLL);
      GC gc = new GC(scroll);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.forms.SectionPart

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.