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

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

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

Util.getResourceContentsAsCharArray介绍

[英]Returns the given file's contents as a character array.
[中]以字符数组的形式返回给定文件的内容。

代码示例

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

  1. @Override
  2. public char[] getContents() {
  3. if (this.contents != null)
  4. return this.contents; // answer the cached source
  5. // otherwise retrieve it
  6. try {
  7. return (this.contents = Util.getResourceContentsAsCharArray(this.file));
  8. } catch (CoreException e) {
  9. return CharOperation.NO_CHAR;
  10. }
  11. }

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

  1. public char[] getContents() {
  2. if (this.contents != null)
  3. return this.contents; // answer the cached source
  4. // otherwise retrieve it
  5. try {
  6. return (this.contents = Util.getResourceContentsAsCharArray(this.file));
  7. } catch (CoreException e) {
  8. return CharOperation.NO_CHAR;
  9. }
  10. }

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

  1. public char[] getContents() {
  2. if (this.contents != null)
  3. return this.contents; // answer the cached source
  4. // otherwise retrieve it
  5. try {
  6. return Util.getResourceContentsAsCharArray(this.file);
  7. } catch (CoreException e) {
  8. return CharOperation.NO_CHAR;
  9. }
  10. }
  11. }

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

  1. public char[] getContents() {
  2. if (this.contents != null)
  3. return this.contents; // answer the cached source
  4. // otherwise retrieve it
  5. try {
  6. return Util.getResourceContentsAsCharArray(this.file);
  7. } catch (CoreException e) {
  8. return CharOperation.NO_CHAR;
  9. }
  10. }
  11. }

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

  1. public char[] getContents() {
  2. if (this.contents != null)
  3. return this.contents; // answer the cached source
  4. // otherwise retrieve it
  5. try {
  6. return (this.contents = Util.getResourceContentsAsCharArray(this.file));
  7. } catch (CoreException e) {
  8. return CharOperation.NO_CHAR;
  9. }
  10. }

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

  1. public char[] getContents() {
  2. if (this.contents != null)
  3. return this.contents; // answer the cached source
  4. // otherwise retrieve it
  5. try {
  6. return Util.getResourceContentsAsCharArray(this.file);
  7. } catch (CoreException e) {
  8. return CharOperation.NO_CHAR;
  9. }
  10. }
  11. }

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

  1. public char[] getContents() {
  2. if (this.contents != null)
  3. return this.contents; // answer the cached source
  4. // otherwise retrieve it
  5. try {
  6. return Util.getResourceContentsAsCharArray(this.file);
  7. } catch (CoreException e) {
  8. return CharOperation.NO_CHAR;
  9. }
  10. }
  11. }

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

  1. /**
  2. * Returns the given file's contents as a character array.
  3. */
  4. public static char[] getResourceContentsAsCharArray(IFile file) throws JavaModelException {
  5. // Get encoding from file
  6. String encoding;
  7. try {
  8. encoding = file.getCharset();
  9. } catch(CoreException ce) {
  10. // do not use any encoding
  11. encoding = null;
  12. }
  13. return getResourceContentsAsCharArray(file, encoding);
  14. }

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

  1. public char[] getCharContents() {
  2. if (this.charContents != null) return this.charContents;
  3. try {
  4. return Util.getResourceContentsAsCharArray(getFile());
  5. } catch (JavaModelException e) {
  6. if (BasicSearchEngine.VERBOSE || JobManager.VERBOSE) { // used during search and during indexing
  7. e.printStackTrace();
  8. }
  9. return null;
  10. }
  11. }
  12. public String getEncoding() {

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

  1. public char[] getCharContents() {
  2. if (this.charContents != null) return this.charContents;
  3. try {
  4. return Util.getResourceContentsAsCharArray(getFile());
  5. } catch (JavaModelException e) {
  6. if (BasicSearchEngine.VERBOSE || JobManager.VERBOSE) { // used during search and during indexing
  7. e.printStackTrace();
  8. }
  9. return null;
  10. }
  11. }
  12. public String getEncoding() {

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

  1. public char[] getCharContents() {
  2. if (this.charContents != null) return this.charContents;
  3. try {
  4. return Util.getResourceContentsAsCharArray(getFile());
  5. } catch (JavaModelException e) {
  6. if (BasicSearchEngine.VERBOSE || JobManager.VERBOSE) { // used during search and during indexing
  7. e.printStackTrace();
  8. }
  9. return null;
  10. }
  11. }
  12. public String getEncoding() {

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

  1. public char[] getCharContents() {
  2. if (this.charContents != null) return this.charContents;
  3. try {
  4. return Util.getResourceContentsAsCharArray(getFile());
  5. } catch (JavaModelException e) {
  6. if (BasicSearchEngine.VERBOSE || JobManager.VERBOSE) { // used during search and during indexing
  7. e.printStackTrace();
  8. }
  9. return null;
  10. }
  11. }
  12. public String getEncoding() {

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

  1. @Override
  2. public char[] getCharContents() {
  3. if (this.charContents != null) return this.charContents;
  4. try {
  5. return Util.getResourceContentsAsCharArray(getFile());
  6. } catch (JavaModelException e) {
  7. if (BasicSearchEngine.VERBOSE || JobManager.VERBOSE) { // used during search and during indexing
  8. e.printStackTrace();
  9. }
  10. return null;
  11. }
  12. }
  13. @Override

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

  1. public char[] getCharContents() {
  2. if (this.charContents != null) return this.charContents;
  3. try {
  4. return Util.getResourceContentsAsCharArray(getFile());
  5. } catch (JavaModelException e) {
  6. if (BasicSearchEngine.VERBOSE || JobManager.VERBOSE) { // used during search and during indexing
  7. e.printStackTrace();
  8. }
  9. return null;
  10. }
  11. }
  12. public String getEncoding() {

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

  1. public char[] getContents() {
  2. try {
  3. return Util.getResourceContentsAsCharArray(this.resource);
  4. } catch (CoreException e) {
  5. throw new AbortCompilation(true, new MissingSourceFileException(this.resource.getFullPath().toString()));
  6. }
  7. }

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

  1. public char[] getContents() {
  2. try {
  3. return Util.getResourceContentsAsCharArray(this.resource);
  4. } catch (CoreException e) {
  5. throw new AbortCompilation(true, new MissingSourceFileException(this.resource.getFullPath().toString()));
  6. }
  7. }

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

  1. public char[] getContents() {
  2. try {
  3. return Util.getResourceContentsAsCharArray(this.resource);
  4. } catch (CoreException e) {
  5. throw new AbortCompilation(true, new MissingSourceFileException(this.resource.getFullPath().toString()));
  6. }
  7. }

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

  1. @Override
  2. public char[] getContents() {
  3. try {
  4. return Util.getResourceContentsAsCharArray(this.resource);
  5. } catch (CoreException e) {
  6. throw new AbortCompilation(true, new MissingSourceFileException(this.resource.getFullPath().toString()));
  7. }
  8. }

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

  1. public char[] getContents() {
  2. try {
  3. return Util.getResourceContentsAsCharArray(this.resource);
  4. } catch (CoreException e) {
  5. throw new AbortCompilation(true, new MissingSourceFileException(this.resource.getFullPath().toString()));
  6. }
  7. }

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

  1. public char[] getContents() {
  2. try {
  3. return Util.getResourceContentsAsCharArray(this.resource);
  4. } catch (CoreException e) {
  5. throw new AbortCompilation(true, new MissingSourceFileException(this.resource.getFullPath().toString()));
  6. }
  7. }

相关文章

Util类方法