Package org.eclipse.ui.internal.dialogs

Examples of org.eclipse.ui.internal.dialogs.RegistryPageContributor


    if (pageId == null) {
      logMissingAttribute(element, IWorkbenchRegistryConstants.ATT_ID);
      return;
    }

    RegistryPageContributor contributor = new RegistryPageContributor(
        pageId, element);

    String pageClassName = getClassValue(element,
        IWorkbenchRegistryConstants.ATT_CLASS);
    if (pageClassName == null) {
View Full Code Here


   * @see org.eclipse.ui.internal.registry.CategorizedPageRegistryReader#findNode(java.lang.String)
   */
  Object findNode(String id) {
    Iterator iterator = pages.iterator();
    while (iterator.hasNext()) {
      RegistryPageContributor next = (RegistryPageContributor) iterator
          .next();
      if (next.getPageId().equals(id))
        return next;
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.dialogs.RegistryPageContributor

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.