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

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

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

Util.getPackageFragment介绍

暂无

代码示例

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

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.indexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

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

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.indexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

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

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.indexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg == null) return null;
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }

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

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.lastIndexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

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

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.indexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

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

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.indexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. private static IClassFile getClassFile(char[] fileName) {
  2. int jarSeparator = CharOperation.indexOf(IDependent.JAR_FILE_ENTRY_SEPARATOR, fileName);
  3. int pkgEnd = CharOperation.lastIndexOf('/', fileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. pkgEnd = CharOperation.lastIndexOf(File.separatorChar, fileName);
  6. if (jarSeparator != -1 && pkgEnd < jarSeparator) // if in a jar and no slash, it is a default package -> pkgEnd should be equal to jarSeparator
  7. pkgEnd = jarSeparator;
  8. if (pkgEnd == -1)
  9. return null;
  10. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  11. if (pkg == null) return null;
  12. int start;
  13. return pkg.getClassFile(new String(fileName, start = pkgEnd + 1, fileName.length - start));
  14. }

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

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg == null) return null;
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }

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

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg == null) return null;
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }

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

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg == null) return null;
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }

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

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg == null) return null;
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }

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

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg == null) return null;
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }

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

  1. private static ICompilationUnit getCompilationUnit(char[] fileName, WorkingCopyOwner workingCopyOwner) {
  2. char[] slashSeparatedFileName = CharOperation.replaceOnCopy(fileName, File.separatorChar, '/');
  3. int pkgEnd = CharOperation.lastIndexOf('/', slashSeparatedFileName); // pkgEnd is exclusive
  4. if (pkgEnd == -1)
  5. return null;
  6. IPackageFragment pkg = getPackageFragment(slashSeparatedFileName, pkgEnd, -1/*no jar separator for .java files*/);
  7. if (pkg != null) {
  8. int start;
  9. ICompilationUnit cu = pkg.getCompilationUnit(new String(slashSeparatedFileName, start = pkgEnd+1, slashSeparatedFileName.length - start));
  10. if (workingCopyOwner != null) {
  11. ICompilationUnit workingCopy = cu.findWorkingCopy(workingCopyOwner);
  12. if (workingCopy != null)
  13. return workingCopy;
  14. }
  15. return cu;
  16. }
  17. IWorkspaceRoot wsRoot = ResourcesPlugin.getWorkspace().getRoot();
  18. IFile file = wsRoot.getFile(new Path(String.valueOf(fileName)));
  19. if (file.exists()) {
  20. // this approach works if file exists but is not on the project's build path:
  21. return JavaCore.createCompilationUnitFrom(file);
  22. }
  23. return null;
  24. }

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. if (pkgEnd == -1)
  2. return null;
  3. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  4. char[] constantPoolName = referenceBinding.constantPoolName();
  5. if (constantPoolName == null) {

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

  1. if (pkgEnd == -1)
  2. return null;
  3. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  4. char[] constantPoolName = referenceBinding.constantPoolName();
  5. if (constantPoolName == null) {

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

  1. if (pkgEnd == -1)
  2. return null;
  3. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  4. char[] constantPoolName = referenceBinding.constantPoolName();
  5. if (constantPoolName == null) {

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

  1. if (pkgEnd == -1)
  2. return null;
  3. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  4. char[] constantPoolName = referenceBinding.constantPoolName();
  5. if (constantPoolName == null) {

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

  1. if (pkgEnd == -1)
  2. return null;
  3. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  4. char[] constantPoolName = referenceBinding.constantPoolName();
  5. if (constantPoolName == null) {

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

  1. if (pkgEnd == -1)
  2. return null;
  3. IPackageFragment pkg = getPackageFragment(fileName, pkgEnd, jarSeparator);
  4. char[] constantPoolName = referenceBinding.constantPoolName();
  5. if (constantPoolName == null) {

相关文章

Util类方法