Examples of ISectionDescriptor


Examples of org.eclipse.ui.views.properties.tabbed.ISectionDescriptor

      if (extension.getAttribute("contributorId").equals(HTMLEditor.TABBED_PROPERTIES_CONTRIBUTOR_ID)){ //$NON-NLS-1$
        IConfigurationElement[] sections = extension
            .getChildren(ELEMENT_SECTION);
        for (int j = 0; j < sections.length; j++) {
          IConfigurationElement section = sections[j];
          ISectionDescriptor descriptor = new QuickEditTabSectionDescriptor(
              section, null);//ITypeMapper set to null
          result.add(descriptor);
        }
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.