Package org.eclipse.m2e.wtp.preferences

Examples of org.eclipse.m2e.wtp.preferences.ConfiguratorEnabler


    for (IConfigurationElement config : enablerConfigs) {
        String enablerId = config.getAttribute(ATTR_ENABLER_ID);
        String[] configuratorIds = split(config.getAttribute(ATTR_CONFIGURATOR_IDS));
        String label = config.getAttribute(ATTR_LABEL);
        String description = config.getAttribute(ATTR_DESCRIPTION);
        enablers.add(new ConfiguratorEnabler(enablerId, label, configuratorIds, description));
    }
    return enablers;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.m2e.wtp.preferences.ConfiguratorEnabler

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.