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

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

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

Util.isValidFolderNameForPackage介绍

[英]Returns true if the given folder name is valid for a package, false if it is not.
[中]如果给定的文件夹名称对包有效,则返回true,否则返回false。

代码示例

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. /**
  2. * Converts the given relative path into a package name.
  3. * Returns null if the path is not a valid package name.
  4. * @param pkgPath the package path
  5. * @param sourceLevel the source level
  6. * @param complianceLevel the compliance level
  7. */
  8. public static String packageName(IPath pkgPath, String sourceLevel, String complianceLevel) {
  9. StringBuffer pkgName = new StringBuffer(IPackageFragment.DEFAULT_PACKAGE_NAME);
  10. for (int j = 0, max = pkgPath.segmentCount(); j < max; j++) {
  11. String segment = pkgPath.segment(j);
  12. if (!isValidFolderNameForPackage(segment, sourceLevel, complianceLevel)) {
  13. return null;
  14. }
  15. pkgName.append(segment);
  16. if (j < pkgPath.segmentCount() - 1) {
  17. pkgName.append("." ); //$NON-NLS-1$
  18. }
  19. }
  20. return pkgName.toString();
  21. }

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

  1. private boolean isValidPackageName() {
  2. JavaProject javaProject = (JavaProject) getJavaProject();
  3. String sourceLevel = javaProject.getOption(JavaCore.COMPILER_SOURCE, true);
  4. String complianceLevel = javaProject.getOption(JavaCore.COMPILER_COMPLIANCE, true);
  5. for (int i = 0, length = this.names.length; i < length; i++) {
  6. if (!Util.isValidFolderNameForPackage(this.names[i], sourceLevel, complianceLevel))
  7. return false;
  8. }
  9. return true;
  10. }
  11. /**

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

  1. if (Util.isValidFolderNameForPackage(pkgName[i], null, this.complianceLevel)) {
  2. System.arraycopy(existing, 0, existing = new String[i+1], 0, i);
  3. existing[i] = manager.intern(pkgName[i]);

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

  1. for (int i = existingLength; i < length; i++) {
  2. if (Util.isValidFolderNameForPackage(pkgName[i], null, compliance)) {
  3. System.arraycopy(existing, 0, existing = new String[i+1], 0, i);
  4. existing[i] = manager.intern(pkgName[i]);

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

  1. private boolean isValidPackageName(char[] packageName) {
  2. if (this.validPackageNames.includes(packageName)) {
  3. return true;
  4. }
  5. if (this.invalidPackageNames.includes(packageName)) {
  6. return false;
  7. }
  8. char[][] names = CharOperation.splitOn('.', packageName);
  9. for (int i = 0, length = names.length; i < length; i++) {
  10. if (!Util.isValidFolderNameForPackage(new String(names[i]), this.sourceLevel, this.complianceLevel)) {
  11. this.invalidPackageNames.add(packageName);
  12. return false;
  13. }
  14. }
  15. this.validPackageNames.add(packageName);
  16. return true;
  17. }

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

  1. private boolean isValidPackageName(char[] packageName) {
  2. if (this.validPackageNames.includes(packageName)) {
  3. return true;
  4. }
  5. if (this.invalidPackageNames.includes(packageName)) {
  6. return false;
  7. }
  8. char[][] names = CharOperation.splitOn('.', packageName);
  9. for (int i = 0, length = names.length; i < length; i++) {
  10. if (!Util.isValidFolderNameForPackage(new String(names[i]), this.sourceLevel, this.complianceLevel)) {
  11. this.invalidPackageNames.add(packageName);
  12. return false;
  13. }
  14. }
  15. this.validPackageNames.add(packageName);
  16. return true;
  17. }

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

  1. private boolean isValidPackageName(char[] packageName) {
  2. if (this.validPackageNames.includes(packageName)) {
  3. return true;
  4. }
  5. if (this.invalidPackageNames.includes(packageName)) {
  6. return false;
  7. }
  8. char[][] names = CharOperation.splitOn('.', packageName);
  9. for (int i = 0, length = names.length; i < length; i++) {
  10. if (!Util.isValidFolderNameForPackage(new String(names[i]), this.sourceLevel, this.complianceLevel)) {
  11. this.invalidPackageNames.add(packageName);
  12. return false;
  13. }
  14. }
  15. this.validPackageNames.add(packageName);
  16. return true;
  17. }

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

  1. private boolean isValidPackageName(char[] packageName) {
  2. if (this.validPackageNames.includes(packageName)) {
  3. return true;
  4. }
  5. if (this.invalidPackageNames.includes(packageName)) {
  6. return false;
  7. }
  8. char[][] names = CharOperation.splitOn('.', packageName);
  9. for (int i = 0, length = names.length; i < length; i++) {
  10. if (!Util.isValidFolderNameForPackage(new String(names[i]), this.sourceLevel, this.complianceLevel)) {
  11. this.invalidPackageNames.add(packageName);
  12. return false;
  13. }
  14. }
  15. this.validPackageNames.add(packageName);
  16. return true;
  17. }

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

  1. private boolean isValidPackageName(char[] packageName) {
  2. if (this.validPackageNames.includes(packageName)) {
  3. return true;
  4. }
  5. if (this.invalidPackageNames.includes(packageName)) {
  6. return false;
  7. }
  8. char[][] names = CharOperation.splitOn('.', packageName);
  9. for (int i = 0, length = names.length; i < length; i++) {
  10. if (!Util.isValidFolderNameForPackage(new String(names[i]), this.sourceLevel, this.complianceLevel)) {
  11. this.invalidPackageNames.add(packageName);
  12. return false;
  13. }
  14. }
  15. this.validPackageNames.add(packageName);
  16. return true;
  17. }

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

  1. protected boolean internalIsValidPackageName() {
  2. // if package fragment refers to folder in another IProject, then
  3. // resource().getProject() is different than getJavaProject().getProject()
  4. // use the other java project's options to verify the name
  5. IJavaProject javaProject = JavaCore.create(resource().getProject());
  6. String sourceLevel = javaProject.getOption(JavaCore.COMPILER_SOURCE, true);
  7. String complianceLevel = javaProject.getOption(JavaCore.COMPILER_COMPLIANCE, true);
  8. for (int i = 0, length = this.names.length; i < length; i++) {
  9. if (!Util.isValidFolderNameForPackage(this.names[i], sourceLevel, complianceLevel))
  10. return false;
  11. }
  12. return true;
  13. }
  14. /**

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

  1. protected boolean internalIsValidPackageName() {
  2. // if package fragment refers to folder in another IProject, then
  3. // resource().getProject() is different than getJavaProject().getProject()
  4. // use the other java project's options to verify the name
  5. IJavaProject javaProject = JavaCore.create(resource().getProject());
  6. String sourceLevel = javaProject.getOption(JavaCore.COMPILER_SOURCE, true);
  7. String complianceLevel = javaProject.getOption(JavaCore.COMPILER_COMPLIANCE, true);
  8. for (int i = 0, length = this.names.length; i < length; i++) {
  9. if (!Util.isValidFolderNameForPackage(this.names[i], sourceLevel, complianceLevel))
  10. return false;
  11. }
  12. return true;
  13. }
  14. /**

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

  1. protected boolean internalIsValidPackageName() {
  2. // if package fragment refers to folder in another IProject, then
  3. // resource().getProject() is different than getJavaProject().getProject()
  4. // use the other java project's options to verify the name
  5. IJavaProject javaProject = JavaCore.create(resource().getProject());
  6. String sourceLevel = javaProject.getOption(JavaCore.COMPILER_SOURCE, true);
  7. String complianceLevel = javaProject.getOption(JavaCore.COMPILER_COMPLIANCE, true);
  8. for (int i = 0, length = this.names.length; i < length; i++) {
  9. if (!Util.isValidFolderNameForPackage(this.names[i], sourceLevel, complianceLevel))
  10. return false;
  11. }
  12. return true;
  13. }
  14. /**

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

  1. protected boolean internalIsValidPackageName() {
  2. // if package fragment refers to folder in another IProject, then
  3. // resource().getProject() is different than getJavaProject().getProject()
  4. // use the other java project's options to verify the name
  5. IJavaProject javaProject = JavaCore.create(resource().getProject());
  6. String sourceLevel = javaProject.getOption(JavaCore.COMPILER_SOURCE, true);
  7. String complianceLevel = javaProject.getOption(JavaCore.COMPILER_COMPLIANCE, true);
  8. for (int i = 0, length = this.names.length; i < length; i++) {
  9. if (!Util.isValidFolderNameForPackage(this.names[i], sourceLevel, complianceLevel))
  10. return false;
  11. }
  12. return true;
  13. }
  14. /**

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

  1. protected boolean internalIsValidPackageName() {
  2. // if package fragment refers to folder in another IProject, then
  3. // resource().getProject() is different than getJavaProject().getProject()
  4. // use the other java project's options to verify the name
  5. IJavaProject javaProject = JavaCore.create(resource().getProject());
  6. String sourceLevel = javaProject.getOption(JavaCore.COMPILER_SOURCE, true);
  7. String complianceLevel = javaProject.getOption(JavaCore.COMPILER_COMPLIANCE, true);
  8. for (int i = 0, length = this.names.length; i < length; i++) {
  9. if (!Util.isValidFolderNameForPackage(this.names[i], sourceLevel, complianceLevel))
  10. return false;
  11. }
  12. return true;
  13. }
  14. /**

相关文章

Util类方法