Examples of useAsLibraryFolder()


Examples of org.eclipse.php.core.libfolders.LibraryFolderManager.useAsLibraryFolder()

      @Override
      protected void execute(IProgressMonitor monitor)
          throws CoreException, InvocationTargetException,
          InterruptedException {
        LibraryFolderManager lfm = LibraryFolderManager.getInstance();
        lfm.useAsLibraryFolder(fFolders, monitor);
      }
    };

    try {
      PlatformUI.getWorkbench().getProgressService().busyCursorWhile(op);
View Full Code Here

Examples of org.eclipse.php.core.libfolders.LibraryFolderManager.useAsLibraryFolder()

        // find these folders in the project
        IFolder[] folders = getFoldersFromNames(project, names);

        // mark the folders as library folders
        try {
          lfm.useAsLibraryFolder(folders, monitor);
        } catch (Exception e) {
          return new Status(IStatus.ERROR, PHPCorePlugin.ID,
              e.getLocalizedMessage(), 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.