Examples of ILibraryFolderNameProvider


Examples of org.eclipse.php.core.libfolders.ILibraryFolderNameProvider

    for (IConfigurationElement element : elements) {
      try {
        Object o = element.createExecutableExtension(CLASS_ATTR);
        if (o instanceof ILibraryFolderNameProvider) {
          ILibraryFolderNameProvider extension = (ILibraryFolderNameProvider) o;
          String[] names = extension.getLibraryFolderNames(project);
          if (names != null) {
            result.addAll(Arrays.asList(names));
          }
        }
      } catch (Exception e) {
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.