Tabnine Logo
AbstractMethodDeclaration.bindArguments
Code IndexAdd Tabnine to your IDE (free)

How to use
bindArguments
method
in
org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration

Best Java code snippets using org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.bindArguments (Showing top 11 results out of 315)

origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding);
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: com.ovea.tajin.server/tajin-server-tomcat7

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding);
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: org.eclipse.jetty.orbit/org.eclipse.jdt.core

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding);
    validateNullAnnotations();
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: com.vaadin/vaadin-client-compiler-deps

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding);
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    validateNullAnnotations(sourceLevel);
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding);
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    validateNullAnnotations(sourceLevel);
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: trylimits/Eclipse-Postfix-Code-Completion

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding);
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    validateNullAnnotations(sourceLevel);
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveAnnotations(this.scope, this.annotations, this.binding, this.isConstructor());
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    if (sourceLevel < ClassFileConstants.JDK1_8) // otherwise already checked via Argument.createBinding
      validateNullAnnotations(this.scope.environment().usesNullTypeAnnotations());
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding, this.isConstructor());
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    if (sourceLevel < ClassFileConstants.JDK1_8) // otherwise already checked via Argument.createBinding
      validateNullAnnotations(this.scope.environment().usesNullTypeAnnotations());
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: org.eclipse.jdt.core.compiler/ecj

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding, this.isConstructor());
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    if (sourceLevel < ClassFileConstants.JDK1_8) // otherwise already checked via Argument.createBinding
      validateNullAnnotations(this.scope.environment().usesNullTypeAnnotations());
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding, this.isConstructor());
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    if (sourceLevel < ClassFileConstants.JDK1_8) // otherwise already checked via Argument.createBinding
      validateNullAnnotations(this.scope.environment().usesNullTypeAnnotations());
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
origin: org.eclipse.scout.sdk.deps/ecj

public void resolve(ClassScope upperScope) {
  if (this.binding == null) {
    this.ignoreFurtherInvestigation = true;
  }
  try {
    bindArguments();
    resolveReceiver();
    bindThrownExceptions();
    resolveJavadoc();
    resolveAnnotations(this.scope, this.annotations, this.binding, this.isConstructor());
    
    long sourceLevel = this.scope.compilerOptions().sourceLevel;
    if (sourceLevel < ClassFileConstants.JDK1_8) // otherwise already checked via Argument.createBinding
      validateNullAnnotations(this.scope.environment().usesNullTypeAnnotations());
    resolveStatements();
    // check @Deprecated annotation presence
    if (this.binding != null
        && (this.binding.getAnnotationTagBits() & TagBits.AnnotationDeprecated) == 0
        && (this.binding.modifiers & ClassFileConstants.AccDeprecated) != 0
        && sourceLevel >= ClassFileConstants.JDK1_5) {
      this.scope.problemReporter().missingDeprecatedAnnotationForMethod(this);
    }
  } catch (AbortMethod e) {
    // ========= abort on fatal error =============
    this.ignoreFurtherInvestigation = true;
  }
}
org.eclipse.jdt.internal.compiler.astAbstractMethodDeclarationbindArguments

Javadoc

Bind and add argument's binding into the scope of the method

Popular methods of AbstractMethodDeclaration

  • isConstructor
  • typeParameters
  • traverse
  • isAbstract
  • isClinit
  • abort
  • bindThrownExceptions
    Record the thrown exception type bindings in the corresponding type references.
  • checkArgumentsSize
  • compilationResult
  • generateCode
    Bytecode generation for a method
  • isAnnotationMethod
  • isDefaultConstructor
  • isAnnotationMethod,
  • isDefaultConstructor,
  • isInitializationMethod,
  • isMethod,
  • isStatic,
  • parseStatements,
  • print,
  • printAnnotations,
  • printBody

Popular in Java

  • Reactive rest calls using spring rest template
  • onCreateOptionsMenu (Activity)
  • putExtra (Intent)
  • getSystemService (Context)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • JOptionPane (javax.swing)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now