Package org.eclipse.ui.internal.intro.impl.model.loader

Examples of org.eclipse.ui.internal.intro.impl.model.loader.ExtensionPointManager


      }
    }
    if (config == null)
      return set;
    String configId = config.getAttribute("id"); //$NON-NLS-1$
    ExtensionPointManager extensionPointManager = IntroPlugin.getDefault().getExtensionPointManager();
    model = extensionPointManager.getModel(configId);
    if (model != null && model.hasValidConfig())
      loadFromModel(model, set, locale);
    return set;
  }
View Full Code Here


        super.init(site, memento);
        IntroPlugin.getDefault().closeLaunchBar();
        // load the correct model based in the current Intro Part id. Set the
        // IntroPartId in the manager class.
        String introId = getConfigurationElement().getAttribute("id"); //$NON-NLS-1$
        ExtensionPointManager extensionPointManager = IntroPlugin.getDefault()
            .getExtensionPointManager();
        extensionPointManager.setIntroId(introId);
        model = extensionPointManager.getCurrentModel();

        if (model != null && model.hasValidConfig()) {
            // we have a valid config contribution, get presentation. Make sure
            // you pass corret memento.
            presentation = model.getPresentation();
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.intro.impl.model.loader.ExtensionPointManager

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.