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

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

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

Util.isJavaLikeFileName介绍

[英]Returns true if the given name ends with one of the known java like extension. (implementation is not creating extra strings)
[中]如果给定名称以一个已知的类java扩展名结尾,则返回true。(实现不创建额外字符串)

代码示例

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

  1. /**
  2. * Returns whether the given file name's extension is a Java-like extension.
  3. *
  4. * @return whether the given file name's extension is a Java-like extension
  5. * @see #getJavaLikeExtensions()
  6. * @since 3.2
  7. */
  8. public static boolean isJavaLikeFileName(String fileName) {
  9. return Util.isJavaLikeFileName(fileName);
  10. }

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

  1. /**
  2. * Returns whether the given file name's extension is a Java-like extension.
  3. *
  4. * @return whether the given file name's extension is a Java-like extension
  5. * @see #getJavaLikeExtensions()
  6. * @since 3.2
  7. */
  8. public static boolean isJavaLikeFileName(String fileName) {
  9. return Util.isJavaLikeFileName(fileName);
  10. }

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

  1. /**
  2. * Returns whether the given file name's extension is a Java-like extension.
  3. *
  4. * @return whether the given file name's extension is a Java-like extension
  5. * @see #getJavaLikeExtensions()
  6. * @since 3.2
  7. */
  8. public static boolean isJavaLikeFileName(String fileName) {
  9. return Util.isJavaLikeFileName(fileName);
  10. }

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

  1. /**
  2. * Returns whether the given file name's extension is a Java-like extension.
  3. *
  4. * @return whether the given file name's extension is a Java-like extension
  5. * @see #getJavaLikeExtensions()
  6. * @since 3.2
  7. */
  8. public static boolean isJavaLikeFileName(String fileName) {
  9. return Util.isJavaLikeFileName(fileName);
  10. }

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

  1. /**
  2. * Returns whether the given file name's extension is a Java-like extension.
  3. *
  4. * @return whether the given file name's extension is a Java-like extension
  5. * @see #getJavaLikeExtensions()
  6. * @since 3.2
  7. */
  8. public static boolean isJavaLikeFileName(String fileName) {
  9. return Util.isJavaLikeFileName(fileName);
  10. }

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

  1. /**
  2. * @see IPackageFragment#getCompilationUnit(String)
  3. * @exception IllegalArgumentException if the name does not end with ".java"
  4. */
  5. @Override
  6. public ICompilationUnit getCompilationUnit(String cuName) {
  7. if (!org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(cuName)) {
  8. throw new IllegalArgumentException(Messages.convention_unit_notJavaName);
  9. }
  10. return new CompilationUnit(this, cuName, DefaultWorkingCopyOwner.PRIMARY);
  11. }
  12. /**

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

  1. /**
  2. * @see IPackageFragment#getCompilationUnit(String)
  3. * @exception IllegalArgumentException if the name does not end with ".java"
  4. */
  5. public ICompilationUnit getCompilationUnit(String cuName) {
  6. if (!org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(cuName)) {
  7. throw new IllegalArgumentException(Messages.convention_unit_notJavaName);
  8. }
  9. return new CompilationUnit(this, cuName, DefaultWorkingCopyOwner.PRIMARY);
  10. }
  11. /**

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

  1. /**
  2. * @see IPackageFragment#getCompilationUnit(String)
  3. * @exception IllegalArgumentException if the name does not end with ".java"
  4. */
  5. public ICompilationUnit getCompilationUnit(String cuName) {
  6. if (!org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(cuName)) {
  7. throw new IllegalArgumentException(Messages.convention_unit_notJavaName);
  8. }
  9. return new CompilationUnit(this, cuName, DefaultWorkingCopyOwner.PRIMARY);
  10. }
  11. /**

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

  1. /**
  2. * @see IPackageFragment#getCompilationUnit(String)
  3. * @exception IllegalArgumentException if the name does not end with ".java"
  4. */
  5. public ICompilationUnit getCompilationUnit(String cuName) {
  6. if (!org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(cuName)) {
  7. throw new IllegalArgumentException(Messages.convention_unit_notJavaName);
  8. }
  9. return new CompilationUnit(this, cuName, DefaultWorkingCopyOwner.PRIMARY);
  10. }
  11. /**

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

  1. @Override
  2. public void indexResolvedDocument(SearchDocument document, IPath indexPath) {
  3. String documentPath = document.getPath();
  4. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  5. if (this.sourceIndexer != null)
  6. this.sourceIndexer.indexResolvedDocument();
  7. this.sourceIndexer = null;
  8. }
  9. }

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

  1. public void resolveDocument(SearchDocument document) {
  2. String documentPath = document.getPath();
  3. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  4. if (this.sourceIndexer != null)
  5. this.sourceIndexer.resolveDocument();
  6. }
  7. }

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

  1. public void resolveDocument(SearchDocument document) {
  2. String documentPath = document.getPath();
  3. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  4. if (this.sourceIndexer != null)
  5. this.sourceIndexer.resolveDocument();
  6. }
  7. }

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

  1. public void resolveDocument(SearchDocument document) {
  2. String documentPath = document.getPath();
  3. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  4. if (this.sourceIndexer != null)
  5. this.sourceIndexer.resolveDocument();
  6. }
  7. }

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

  1. public void resolveDocument(SearchDocument document) {
  2. String documentPath = document.getPath();
  3. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  4. if (this.sourceIndexer != null)
  5. this.sourceIndexer.resolveDocument();
  6. }
  7. }

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

  1. @Override
  2. public boolean visit(IResourceProxy proxy) /* throws CoreException */{
  3. if (proxy.getType() == IResource.FILE) {
  4. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName()))
  5. indexManager.addSource((IFile) proxy.requestResource(), container, parser);
  6. return false;
  7. }
  8. return true;
  9. }
  10. },

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

  1. public void indexDocument(SearchDocument document, IPath indexPath) {
  2. // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
  3. document.removeAllIndexEntries(); // in case the document was already indexed
  4. String documentPath = document.getPath();
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  6. this.sourceIndexer = new SourceIndexer(document);
  7. this.sourceIndexer.indexDocument();
  8. } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
  9. new BinaryIndexer(document).indexDocument();
  10. }
  11. }

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

  1. public void indexDocument(SearchDocument document, IPath indexPath) {
  2. // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
  3. document.removeAllIndexEntries(); // in case the document was already indexed
  4. String documentPath = document.getPath();
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  6. this.sourceIndexer = new SourceIndexer(document);
  7. this.sourceIndexer.indexDocument();
  8. } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
  9. new BinaryIndexer(document).indexDocument();
  10. }
  11. }

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

  1. public void indexDocument(SearchDocument document, IPath indexPath) {
  2. // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
  3. document.removeAllIndexEntries(); // in case the document was already indexed
  4. String documentPath = document.getPath();
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  6. this.sourceIndexer = new SourceIndexer(document);
  7. this.sourceIndexer.indexDocument();
  8. } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
  9. new BinaryIndexer(document).indexDocument();
  10. }
  11. }

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

  1. public void indexDocument(SearchDocument document, IPath indexPath) {
  2. // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
  3. document.removeAllIndexEntries(); // in case the document was already indexed
  4. String documentPath = document.getPath();
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  6. this.sourceIndexer = new SourceIndexer(document);
  7. this.sourceIndexer.indexDocument();
  8. } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
  9. new BinaryIndexer(document).indexDocument();
  10. }
  11. }

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

  1. public void indexDocument(SearchDocument document, IPath indexPath) {
  2. // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
  3. document.removeAllIndexEntries(); // in case the document was already indexed
  4. String documentPath = document.getPath();
  5. if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
  6. new SourceIndexer(document).indexDocument();
  7. } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
  8. new BinaryIndexer(document).indexDocument();
  9. }
  10. }

相关文章

Util类方法