Examples of readableName()


Examples of org.eclipse.jdt.internal.compiler.lookup.FieldBinding.readableName()

        shortArguments = new String[] {CharOperation.toString(importRef.tokens), new String(field.declaringClass.shortReadableName())};
        break;
      case ProblemReasons.Ambiguous :
        id = IProblem.AmbiguousField;
        readableArguments = new String[] {new String(field.readableName())};
        shortArguments = new String[] {new String(field.readableName())};
        break;
      case ProblemReasons.ReceiverTypeNotVisible :
        id = IProblem.NotVisibleType;
        readableArguments = new String[] {new String(field.declaringClass.leafComponentType().readableName())};
        shortArguments = new String[] {new String(field.declaringClass.leafComponentType().shortReadableName())};
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.FieldBinding.readableName()

    default :
      needImplementation(fieldRef); // want to fail to see why we were here...
      break;
  }

  String[] arguments = new String[] {new String(field.readableName())};
  this.handle(
    id,
    arguments,
    arguments,
    nodeSourceStart(field, fieldRef),
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.LocalVariableBinding.readableName()

  if (localBinding != null) {
    this.handle(
      IProblem.UnhandledExceptionOnAutoClose,
      new String[] {
          new String(exceptionType.readableName()),
          new String(localBinding.readableName())},
      new String[] {
          new String(exceptionType.shortReadableName()),
          new String(localBinding.shortReadableName())},
      location.sourceStart,
      location.sourceEnd);
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.MethodBinding.readableName()

      int typeDeclarationSourceStart = currentDeclaration.sourceStart();
      int typeDeclarationSourceEnd = currentDeclaration.sourceEnd();
      for (int i = 0, max = methodDeclarations.length; i < max; i++) {
        MethodDeclaration methodDeclaration = methodDeclarations[i];
        MethodBinding methodBinding = methodDeclaration.binding;
         String readableName = new String(methodBinding.readableName());
         CategorizedProblem[] problems = compilationResult.problems;
         int problemsCount = compilationResult.problemCount;
        for (int j = 0; j < problemsCount; j++) {
          CategorizedProblem problem = problems[j];
          if (problem != null
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.MethodBinding.readableName()

      int typeDeclarationSourceStart = currentDeclaration.sourceStart();
      int typeDeclarationSourceEnd = currentDeclaration.sourceEnd();
      for (int i = 0, max = methodDeclarations.length; i < max; i++) {
        MethodDeclaration methodDeclaration = methodDeclarations[i];
        MethodBinding methodBinding = methodDeclaration.binding;
         String readableName = new String(methodBinding.readableName());
         CategorizedProblem[] problems = compilationResult.problems;
         int problemsCount = compilationResult.problemCount;
        for (int j = 0; j < problemsCount; j++) {
          CategorizedProblem problem = problems[j];
          if (problem != null
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.MethodBinding.readableName()

      int typeDeclarationSourceStart = currentDeclaration.sourceStart();
      int typeDeclarationSourceEnd = currentDeclaration.sourceEnd();
      for (int i = 0, max = methodDeclarations.length; i < max; i++) {
        MethodDeclaration methodDeclaration = methodDeclarations[i];
        MethodBinding methodBinding = methodDeclaration.binding;
         String readableName = new String(methodBinding.readableName());
         CategorizedProblem[] problems = compilationResult.problems;
         int problemsCount = compilationResult.problemCount;
        for (int j = 0; j < problemsCount; j++) {
          CategorizedProblem problem = problems[j];
          if (problem != null
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.readableName()

  ReferenceBinding type = typeDecl.binding;
  this.handle(
      IProblem.UnusedPrivateType,
    new String[] {
      new String(type.readableName()),
     },
    new String[] {
      new String(type.shortReadableName()),
     },
    severity,
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.readableName()

                ReferenceBinding cls = (ReferenceBinding) mBinding;
                if (strict) {
                    cls = cls.superclass();
                }
                for (; cls != null; cls = cls.superclass()) {
                    if (sameChars(name, cls.readableName())) {
                        return true;
                    }
                }
            }
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.readableName()

  ReferenceBinding type = typeDecl.binding;
  this.handle(
      IProblem.UnusedPrivateType,
    new String[] {
      new String(type.readableName()),
     },
    new String[] {
      new String(type.shortReadableName()),
     },
    severity,
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.readableName()

  if (excludeDueToAnnotation(typeDecl.annotations, IProblem.UnusedPrivateType)) return;
  ReferenceBinding type = typeDecl.binding;
  this.handle(
      IProblem.UnusedPrivateType,
    new String[] {
      new String(type.readableName()),
     },
    new String[] {
      new String(type.shortReadableName()),
     },
    severity,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.