Examples of IncludedFileResult


Examples of org.eclipse.php.internal.core.util.PHPSearchEngine.IncludedFileResult

      // workspace file
      ResourceResult resResult = (ResourceResult) result;
      IResource resource = resResult.getFile();
      sourceModule = (ISourceModule) DLTKCore.create(resource);
    } else if (result instanceof IncludedFileResult) {
      IncludedFileResult incResult = (IncludedFileResult) result;
      IProjectFragment[] projectFragments = incResult
          .getProjectFragments();
      if (projectFragments != null) {
        String folderPath = ""; //$NON-NLS-1$
        String moduleName = path;
        int i = Math.max(path.lastIndexOf('/'), path.lastIndexOf('\\'));
View Full Code Here

Examples of org.eclipse.php.internal.core.util.PHPSearchEngine.IncludedFileResult

          return new PathEntry(extFileResult.getFile()
              .getAbsolutePath(), Type.EXTERNAL,
              extFileResult.getContainer());
        }
        if (result instanceof IncludedFileResult) {
          IncludedFileResult incFileResult = (IncludedFileResult) result;
          IBuildpathEntry container = incFileResult.getContainer();
          Type type = (container.getEntryKind() == IBuildpathEntry.BPE_VARIABLE) ? Type.INCLUDE_VAR
              : Type.INCLUDE_FOLDER;
          return new PathEntry(incFileResult.getFile()
              .getAbsolutePath(), type, container);
        }
        if (result != null) {
          // workspace file
          ResourceResult resResult = (ResourceResult) result;
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.