Package org.pdtextensions.core.launch.environment

Examples of org.pdtextensions.core.launch.environment.EnvironmentFactory


 
  private void evaluate(IExtensionRegistry registry) {
    try {
      IConfigurationElement[] config = registry.getConfigurationElementsFor(LAUNCHER_ID);
      for (IConfigurationElement e : config) {
        final EnvironmentFactory factory = (EnvironmentFactory) e.createExecutableExtension("class");
        if (factory != null) {
          factories.put(e.getAttribute("id"), factory);
        }
      }
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.pdtextensions.core.launch.environment.EnvironmentFactory

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.