org.eclipse.jdt.internal.core.util.Util.relativePath()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(15.7k)|赞(0)|评价(0)|浏览(236)

本文整理了Java中org.eclipse.jdt.internal.core.util.Util.relativePath()方法的一些代码示例,展示了Util.relativePath()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.relativePath()方法的具体详情如下:
包路径:org.eclipse.jdt.internal.core.util.Util
类名称:Util
方法名:relativePath

Util.relativePath介绍

[英]Returns the toString() of the given full path minus the first given number of segments. The returned string is always a relative path (it has no leading slash)
[中]返回给定完整路径的toString()减去第一个给定的段数。返回的字符串始终是相对路径(它没有前导斜杠)

代码示例

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. @Override
  2. public boolean visit(IResourceProxy proxy) {
  3. if (IndexBinaryFolder.this.isCancelled) return false;
  4. if (proxy.getType() == IResource.FILE) {
  5. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  8. indexedFileNames.put(containerRelativePath, file);
  9. }
  10. return false;
  11. }
  12. return true;
  13. }
  14. }, IResource.NONE);

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  7. indexedFileNames.put(containerRelativePath, file);
  8. }
  9. return false;
  10. }
  11. return true;
  12. }
  13. }, IResource.NONE);

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  7. indexedFileNames.put(containerRelativePath, file);
  8. }
  9. return false;
  10. }
  11. return true;
  12. }
  13. }, IResource.NONE);

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  7. indexedFileNames.put(containerRelativePath, file);
  8. }
  9. return false;
  10. }
  11. return true;
  12. }
  13. }, IResource.NONE);

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  7. indexedFileNames.put(containerRelativePath, file);
  8. }
  9. return false;
  10. }
  11. return true;
  12. }
  13. }, IResource.NONE);

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  7. indexedFileNames.put(containerRelativePath, file);
  8. }
  9. return false;
  10. }
  11. return true;
  12. }
  13. }, IResource.NONE);

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. public void findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor progressMonitor) {
  2. IPackageFragmentRoot root = (IPackageFragmentRoot) this.typeParameter.getAncestor(IJavaElement.PACKAGE_FRAGMENT_ROOT);
  3. String documentPath;
  4. String relativePath;
  5. if (root.isArchive()) {
  6. IType type = (IType) this.typeParameter.getAncestor(IJavaElement.TYPE);
  7. relativePath = (type.getFullyQualifiedName('$')).replace('.', '/') + SuffixConstants.SUFFIX_STRING_class;
  8. documentPath = root.getPath() + IJavaSearchScope.JAR_FILE_ENTRY_SEPARATOR + relativePath;
  9. } else {
  10. IPath path = this.typeParameter.getPath();
  11. documentPath = path.toString();
  12. relativePath = Util.relativePath(path, 1/*remove project segment*/);
  13. }
  14. if (scope instanceof JavaSearchScope) {
  15. JavaSearchScope javaSearchScope = (JavaSearchScope) scope;
  16. // Get document path access restriction from java search scope
  17. // Note that requestor has to verify if needed whether the document violates the access restriction or not
  18. AccessRuleSet access = javaSearchScope.getAccessRuleSet(relativePath, index.containerPath);
  19. if (access != JavaSearchScope.NOT_ENCLOSED) { // scope encloses the path
  20. if (!requestor.acceptIndexMatch(documentPath, this, participant, access))
  21. throw new OperationCanceledException();
  22. }
  23. } else if (scope.encloses(documentPath)) {
  24. if (!requestor.acceptIndexMatch(documentPath, this, participant, null))
  25. throw new OperationCanceledException();
  26. }
  27. }

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexAllProject.this.isCancelled) return false;
  3. switch(proxy.getType()) {
  4. case IResource.FILE :
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. if (exclusionPatterns != null || inclusionPatterns != null)
  8. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  9. return false;
  10. indexedFileNames.put(Util.relativePath(file.getFullPath(), 1/*remove project segment*/), file);
  11. }
  12. return false;
  13. case IResource.FOLDER :
  14. if (exclusionPatterns != null && inclusionPatterns == null) {
  15. // if there are inclusion patterns then we must walk the children
  16. if (Util.isExcluded(proxy.requestFullPath(), inclusionPatterns, exclusionPatterns, true))
  17. return false;
  18. }
  19. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  20. return false;
  21. }
  22. return true;
  23. }
  24. },

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. @Override
  2. public boolean visit(IResourceProxy proxy) {
  3. if (IndexAllProject.this.isCancelled) return false;
  4. switch(proxy.getType()) {
  5. case IResource.FILE :
  6. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  7. IFile file = (IFile) proxy.requestResource();
  8. if (exclusionPatterns != null || inclusionPatterns != null)
  9. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  10. return false;
  11. indexedFileNames.put(Util.relativePath(file.getFullPath(), 1/*remove project segment*/), file);
  12. }
  13. return false;
  14. case IResource.FOLDER :
  15. if (exclusionPatterns != null && inclusionPatterns == null) {
  16. // if there are inclusion patterns then we must walk the children
  17. if (Util.isExcluded(proxy.requestFullPath(), inclusionPatterns, exclusionPatterns, true))
  18. return false;
  19. }
  20. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  21. return false;
  22. }
  23. return true;
  24. }
  25. },

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexAllProject.this.isCancelled) return false;
  3. switch(proxy.getType()) {
  4. case IResource.FILE :
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. if (exclusionPatterns != null || inclusionPatterns != null)
  8. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  9. return false;
  10. indexedFileNames.put(Util.relativePath(file.getFullPath(), 1/*remove project segment*/), file);
  11. }
  12. return false;
  13. case IResource.FOLDER :
  14. if (exclusionPatterns != null && inclusionPatterns == null) {
  15. // if there are inclusion patterns then we must walk the children
  16. if (Util.isExcluded(proxy.requestFullPath(), inclusionPatterns, exclusionPatterns, true))
  17. return false;
  18. }
  19. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  20. return false;
  21. }
  22. return true;
  23. }
  24. },

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexAllProject.this.isCancelled) return false;
  3. switch(proxy.getType()) {
  4. case IResource.FILE :
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. if (exclusionPatterns != null || inclusionPatterns != null)
  8. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  9. return false;
  10. indexedFileNames.put(Util.relativePath(file.getFullPath(), 1/*remove project segment*/), file);
  11. }
  12. return false;
  13. case IResource.FOLDER :
  14. if (exclusionPatterns != null && inclusionPatterns == null) {
  15. // if there are inclusion patterns then we must walk the children
  16. if (Util.isExcluded(proxy.requestFullPath(), inclusionPatterns, exclusionPatterns, true))
  17. return false;
  18. }
  19. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  20. return false;
  21. }
  22. return true;
  23. }
  24. },

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexAllProject.this.isCancelled) return false;
  3. switch(proxy.getType()) {
  4. case IResource.FILE :
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. if (exclusionPatterns != null || inclusionPatterns != null)
  8. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  9. return false;
  10. indexedFileNames.put(Util.relativePath(file.getFullPath(), 1/*remove project segment*/), file);
  11. }
  12. return false;
  13. case IResource.FOLDER :
  14. if (exclusionPatterns != null && inclusionPatterns == null) {
  15. // if there are inclusion patterns then we must walk the children
  16. if (Util.isExcluded(proxy.requestFullPath(), inclusionPatterns, exclusionPatterns, true))
  17. return false;
  18. }
  19. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  20. return false;
  21. }
  22. return true;
  23. }
  24. },

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) {
  2. if (IndexAllProject.this.isCancelled) return false;
  3. switch(proxy.getType()) {
  4. case IResource.FILE :
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. if (exclusionPatterns != null || inclusionPatterns != null)
  8. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  9. return false;
  10. indexedFileNames.put(Util.relativePath(file.getFullPath(), 1/*remove project segment*/), file);
  11. }
  12. return false;
  13. case IResource.FOLDER :
  14. if (exclusionPatterns != null && inclusionPatterns == null) {
  15. // if there are inclusion patterns then we must walk the children
  16. if (Util.isExcluded(proxy.requestFullPath(), inclusionPatterns, exclusionPatterns, true))
  17. return false;
  18. }
  19. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  20. return false;
  21. }
  22. return true;
  23. }
  24. },

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) throws CoreException {
  2. if (IndexAllProject.this.isCancelled) return false;
  3. switch(proxy.getType()) {
  4. case IResource.FILE :
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. URI location = file.getLocationURI();
  8. if (location == null) return false;
  9. if (exclusionPatterns != null || inclusionPatterns != null)
  10. if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
  11. return false;
  12. String relativePathString = Util.relativePath(file.getFullPath(), 1/*remove project segment*/);
  13. indexedFileNames.put(relativePathString,
  14. indexedFileNames.get(relativePathString) == null
  15. || indexLastModified < EFS.getStore(location).fetchInfo().getLastModified()
  16. ? (Object) file
  17. : (Object) OK);
  18. }
  19. return false;
  20. case IResource.FOLDER :
  21. if (exclusionPatterns != null || inclusionPatterns != null)
  22. if (Util.isExcluded(proxy.requestResource(), inclusionPatterns, exclusionPatterns))
  23. return false;
  24. if (hasOutputs && outputs.contains(proxy.requestFullPath()))
  25. return false;
  26. }
  27. return true;
  28. }
  29. },

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) throws CoreException {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. URI location = file.getLocationURI();
  7. if (location != null) {
  8. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  9. indexedFileNames.put(containerRelativePath,
  10. indexedFileNames.get(containerRelativePath) == null
  11. || indexLastModified <
  12. EFS.getStore(location).fetchInfo().getLastModified()
  13. ? (Object) file
  14. : (Object) OK);
  15. }
  16. }
  17. return false;
  18. }
  19. return true;
  20. }
  21. },

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) throws CoreException {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. URI location = file.getLocationURI();
  7. if (location != null) {
  8. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  9. indexedFileNames.put(containerRelativePath,
  10. indexedFileNames.get(containerRelativePath) == null
  11. || indexLastModified <
  12. EFS.getStore(location).fetchInfo().getLastModified()
  13. ? (Object) file
  14. : (Object) OK);
  15. }
  16. }
  17. return false;
  18. }
  19. return true;
  20. }
  21. },

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) throws CoreException {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. URI location = file.getLocationURI();
  7. if (location != null) {
  8. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  9. indexedFileNames.put(containerRelativePath,
  10. indexedFileNames.get(containerRelativePath) == null
  11. || indexLastModified <
  12. EFS.getStore(location).fetchInfo().getLastModified()
  13. ? (Object) file
  14. : (Object) OK);
  15. }
  16. }
  17. return false;
  18. }
  19. return true;
  20. }
  21. },

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. public boolean visit(IResourceProxy proxy) throws CoreException {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. URI location = file.getLocationURI();
  7. if (location != null) {
  8. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  9. indexedFileNames.put(containerRelativePath,
  10. indexedFileNames.get(containerRelativePath) == null
  11. || indexLastModified <
  12. EFS.getStore(location).fetchInfo().getLastModified()
  13. ? (Object) file
  14. : (Object) OK);
  15. }
  16. }
  17. return false;
  18. }
  19. return true;
  20. }
  21. },

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. @Override
  2. public boolean visit(IResourceProxy proxy) throws CoreException {
  3. if (IndexBinaryFolder.this.isCancelled) return false;
  4. if (proxy.getType() == IResource.FILE) {
  5. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  6. IFile file = (IFile) proxy.requestResource();
  7. URI location = file.getLocationURI();
  8. if (location != null) {
  9. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  10. indexedFileNames.put(containerRelativePath,
  11. indexedFileNames.get(containerRelativePath) == null
  12. || indexLastModified <
  13. EFS.getStore(location).fetchInfo().getLastModified()
  14. ? (Object) file
  15. : (Object) OK);
  16. }
  17. }
  18. return false;
  19. }
  20. return true;
  21. }
  22. },

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. public boolean visit(IResourceProxy proxy) throws CoreException {
  2. if (IndexBinaryFolder.this.isCancelled) return false;
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(proxy.getName())) {
  5. IFile file = (IFile) proxy.requestResource();
  6. URI location = file.getLocationURI();
  7. if (location != null) {
  8. String containerRelativePath = Util.relativePath(file.getFullPath(), IndexBinaryFolder.this.containerPath.segmentCount());
  9. indexedFileNames.put(containerRelativePath,
  10. indexedFileNames.get(containerRelativePath) == null
  11. || indexLastModified <
  12. EFS.getStore(location).fetchInfo().getLastModified()
  13. ? (Object) file
  14. : (Object) OK);
  15. }
  16. }
  17. return false;
  18. }
  19. return true;
  20. }
  21. },

相关文章

Util类方法