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

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

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

Util.newClassFileReader介绍

暂无

代码示例

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

  1. /**
  2. * Creates the type info from the given class file on disk and
  3. * adds it to the given list of infos.
  4. */
  5. protected IBinaryType createInfoFromClassFile(Openable handle, IResource file) {
  6. IBinaryType info = null;
  7. try {
  8. info = Util.newClassFileReader(file);
  9. } catch (org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException e) {
  10. if (TypeHierarchy.DEBUG) {
  11. e.printStackTrace();
  12. }
  13. return null;
  14. } catch (java.io.IOException e) {
  15. if (TypeHierarchy.DEBUG) {
  16. e.printStackTrace();
  17. }
  18. return null;
  19. } catch (CoreException e) {
  20. if (TypeHierarchy.DEBUG) {
  21. e.printStackTrace();
  22. }
  23. return null;
  24. }
  25. this.infoToHandle.put(info, handle);
  26. return info;
  27. }
  28. /**

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

  1. /**
  2. * Creates the type info from the given class file on disk and
  3. * adds it to the given list of infos.
  4. */
  5. protected IBinaryType createInfoFromClassFile(Openable handle, IResource file) {
  6. IBinaryType info = null;
  7. try {
  8. info = Util.newClassFileReader(file);
  9. } catch (org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException e) {
  10. if (TypeHierarchy.DEBUG) {
  11. e.printStackTrace();
  12. }
  13. return null;
  14. } catch (java.io.IOException e) {
  15. if (TypeHierarchy.DEBUG) {
  16. e.printStackTrace();
  17. }
  18. return null;
  19. } catch (CoreException e) {
  20. if (TypeHierarchy.DEBUG) {
  21. e.printStackTrace();
  22. }
  23. return null;
  24. }
  25. this.infoToHandle.put(info, handle);
  26. return info;
  27. }
  28. /**

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

  1. /**
  2. * Creates the type info from the given class file on disk and
  3. * adds it to the given list of infos.
  4. */
  5. protected IBinaryType createInfoFromClassFile(Openable handle, IResource file) {
  6. IBinaryType info = null;
  7. try {
  8. info = Util.newClassFileReader(file);
  9. } catch (org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException e) {
  10. if (TypeHierarchy.DEBUG) {
  11. e.printStackTrace();
  12. }
  13. return null;
  14. } catch (java.io.IOException e) {
  15. if (TypeHierarchy.DEBUG) {
  16. e.printStackTrace();
  17. }
  18. return null;
  19. } catch (CoreException e) {
  20. if (TypeHierarchy.DEBUG) {
  21. e.printStackTrace();
  22. }
  23. return null;
  24. }
  25. this.infoToHandle.put(info, handle);
  26. return info;
  27. }
  28. /**

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

  1. /**
  2. * Creates the type info from the given class file on disk and
  3. * adds it to the given list of infos.
  4. */
  5. protected IBinaryType createInfoFromClassFile(Openable handle, IResource file) {
  6. IBinaryType info = null;
  7. try {
  8. info = Util.newClassFileReader(file);
  9. } catch (org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException e) {
  10. if (TypeHierarchy.DEBUG) {
  11. e.printStackTrace();
  12. }
  13. return null;
  14. } catch (java.io.IOException e) {
  15. if (TypeHierarchy.DEBUG) {
  16. e.printStackTrace();
  17. }
  18. return null;
  19. } catch (CoreException e) {
  20. if (TypeHierarchy.DEBUG) {
  21. e.printStackTrace();
  22. }
  23. return null;
  24. }
  25. this.infoToHandle.put(info, handle);
  26. return info;
  27. }
  28. /**

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

  1. /**
  2. * Creates the type info from the given class file on disk and
  3. * adds it to the given list of infos.
  4. */
  5. protected IBinaryType createInfoFromClassFile(Openable handle, IResource file) {
  6. IBinaryType info = null;
  7. try {
  8. info = Util.newClassFileReader(file);
  9. } catch (org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException e) {
  10. if (TypeHierarchy.DEBUG) {
  11. e.printStackTrace();
  12. }
  13. return null;
  14. } catch (java.io.IOException e) {
  15. if (TypeHierarchy.DEBUG) {
  16. e.printStackTrace();
  17. }
  18. return null;
  19. } catch (CoreException e) {
  20. if (TypeHierarchy.DEBUG) {
  21. e.printStackTrace();
  22. }
  23. return null;
  24. }
  25. this.infoToHandle.put(info, handle);
  26. return info;
  27. }
  28. /**

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

  1. /**
  2. * Creates the type info from the given class file on disk and
  3. * adds it to the given list of infos.
  4. */
  5. protected IBinaryType createInfoFromClassFile(Openable handle, IResource file) {
  6. IBinaryType info = null;
  7. try {
  8. info = Util.newClassFileReader(file);
  9. } catch (org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException e) {
  10. if (TypeHierarchy.DEBUG) {
  11. e.printStackTrace();
  12. }
  13. return null;
  14. } catch (java.io.IOException e) {
  15. if (TypeHierarchy.DEBUG) {
  16. e.printStackTrace();
  17. }
  18. return null;
  19. } catch (CoreException e) {
  20. if (TypeHierarchy.DEBUG) {
  21. e.printStackTrace();
  22. }
  23. return null;
  24. }
  25. this.infoToHandle.put(info, handle);
  26. return info;
  27. }
  28. /**

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

  1. public NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName) {
  2. if (!doesFileExist(binaryFileName, qualifiedPackageName, qualifiedBinaryFileName)) return null; // most common case
  3. ClassFileReader reader = null;
  4. try {
  5. reader = Util.newClassFileReader(this.binaryFolder.getFile(new Path(qualifiedBinaryFileName)));
  6. } catch (CoreException e) {
  7. return null;
  8. } catch (ClassFormatException e) {
  9. return null;
  10. } catch (IOException e) {
  11. return null;
  12. }
  13. if (reader != null) {
  14. if (this.accessRuleSet == null)
  15. return new NameEnvironmentAnswer(reader, null);
  16. String fileNameWithoutExtension = qualifiedBinaryFileName.substring(0, qualifiedBinaryFileName.length() - SuffixConstants.SUFFIX_CLASS.length);
  17. return new NameEnvironmentAnswer(reader, this.accessRuleSet.getViolatedRestriction(fileNameWithoutExtension.toCharArray()));
  18. }
  19. return null;
  20. }

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

  1. public NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName) {
  2. if (!doesFileExist(binaryFileName, qualifiedPackageName, qualifiedBinaryFileName)) return null; // most common case
  3. ClassFileReader reader = null;
  4. try {
  5. reader = Util.newClassFileReader(this.binaryFolder.getFile(new Path(qualifiedBinaryFileName)));
  6. } catch (CoreException e) {
  7. return null;
  8. } catch (ClassFormatException e) {
  9. return null;
  10. } catch (IOException e) {
  11. return null;
  12. }
  13. if (reader != null) {
  14. if (this.accessRuleSet == null)
  15. return new NameEnvironmentAnswer(reader, null);
  16. String fileNameWithoutExtension = qualifiedBinaryFileName.substring(0, qualifiedBinaryFileName.length() - SuffixConstants.SUFFIX_CLASS.length);
  17. return new NameEnvironmentAnswer(reader, this.accessRuleSet.getViolatedRestriction(fileNameWithoutExtension.toCharArray()));
  18. }
  19. return null;
  20. }

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

  1. public NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName) {
  2. if (!doesFileExist(binaryFileName, qualifiedPackageName, qualifiedBinaryFileName)) return null; // most common case
  3. ClassFileReader reader = null;
  4. try {
  5. reader = Util.newClassFileReader(this.binaryFolder.getFile(new Path(qualifiedBinaryFileName)));
  6. } catch (CoreException e) {
  7. return null;
  8. } catch (ClassFormatException e) {
  9. return null;
  10. } catch (IOException e) {
  11. return null;
  12. }
  13. if (reader != null) {
  14. if (this.accessRuleSet == null)
  15. return new NameEnvironmentAnswer(reader, null);
  16. String fileNameWithoutExtension = qualifiedBinaryFileName.substring(0, qualifiedBinaryFileName.length() - SuffixConstants.SUFFIX_CLASS.length);
  17. return new NameEnvironmentAnswer(reader, this.accessRuleSet.getViolatedRestriction(fileNameWithoutExtension.toCharArray()));
  18. }
  19. return null;
  20. }

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

  1. public NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName) {
  2. if (!doesFileExist(binaryFileName, qualifiedPackageName, qualifiedBinaryFileName)) return null; // most common case
  3. ClassFileReader reader = null;
  4. try {
  5. reader = Util.newClassFileReader(this.binaryFolder.getFile(new Path(qualifiedBinaryFileName)));
  6. } catch (CoreException e) {
  7. return null;
  8. } catch (ClassFormatException e) {
  9. return null;
  10. } catch (IOException e) {
  11. return null;
  12. }
  13. if (reader != null) {
  14. String fileNameWithoutExtension = qualifiedBinaryFileName.substring(0, qualifiedBinaryFileName.length() - SuffixConstants.SUFFIX_CLASS.length);
  15. if (this.externalAnnotationPath != null) {
  16. try {
  17. this.annotationZipFile = reader.setExternalAnnotationProvider(this.externalAnnotationPath, fileNameWithoutExtension, this.annotationZipFile, null);
  18. } catch (IOException e) {
  19. // don't let error on annotations fail class reading
  20. }
  21. }
  22. if (this.accessRuleSet == null)
  23. return new NameEnvironmentAnswer(reader, null);
  24. return new NameEnvironmentAnswer(reader, this.accessRuleSet.getViolatedRestriction(fileNameWithoutExtension.toCharArray()));
  25. }
  26. return null;
  27. }

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

  1. IModule initializeModule() {
  2. IResource[] members = null;
  3. try {
  4. members = this.binaryFolder.members();
  5. if (members != null) {
  6. for (int i = 0, l = members.length; i < l; i++) {
  7. IResource m = members[i];
  8. String name = m.getName();
  9. // Note: Look only inside the default package.
  10. if (m.getType() == IResource.FILE && org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(name)) {
  11. if (name.equalsIgnoreCase(IModule.MODULE_INFO_CLASS)) {
  12. try {
  13. ClassFileReader cfr = Util.newClassFileReader(m);
  14. return cfr.getModuleDeclaration();
  15. } catch (ClassFormatException | IOException e) {
  16. // TODO Java 9 Auto-generated catch block
  17. e.printStackTrace();
  18. }
  19. }
  20. }
  21. }
  22. }
  23. } catch (CoreException e1) {
  24. e1.printStackTrace();
  25. }
  26. return null;
  27. }
  28. String[] directoryList(String qualifiedPackageName) {

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

  1. IModule initializeModule() {
  2. IResource[] members = null;
  3. try {
  4. members = this.binaryFolder.members();
  5. if (members != null) {
  6. for (int i = 0, l = members.length; i < l; i++) {
  7. IResource m = members[i];
  8. String name = m.getName();
  9. // Note: Look only inside the default package.
  10. if (m.getType() == IResource.FILE && org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(name)) {
  11. if (name.equalsIgnoreCase(IModule.MODULE_INFO_CLASS)) {
  12. try {
  13. ClassFileReader cfr = Util.newClassFileReader(m);
  14. return cfr.getModuleDeclaration();
  15. } catch (ClassFormatException | IOException e) {
  16. // TODO Java 9 Auto-generated catch block
  17. e.printStackTrace();
  18. }
  19. }
  20. }
  21. }
  22. }
  23. } catch (CoreException e1) {
  24. e1.printStackTrace();
  25. }
  26. return null;
  27. }
  28. String[] directoryList(String qualifiedPackageName) {

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

  1. try {
  2. if (!root.isArchive())
  3. return Util.newClassFileReader(((JavaElement) type).resource());

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

  1. try {
  2. if (!root.isArchive())
  3. return Util.newClassFileReader(((JavaElement) type).resource());

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

  1. try {
  2. if (!root.isArchive())
  3. return Util.newClassFileReader(((JavaElement) type).resource());

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

  1. try {
  2. if (!root.isArchive())
  3. return Util.newClassFileReader(((JavaElement) type).resource());

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

  1. try {
  2. if (!root.isArchive())
  3. return Util.newClassFileReader(((JavaElement) type).resource());

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

  1. try {
  2. if (!root.isArchive())
  3. return Util.newClassFileReader(((JavaElement) type).resource());

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

  1. info = Util.newClassFileReader(resource);

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

  1. info = Util.newClassFileReader(resource);

相关文章

Util类方法