Tabnine Logo
Javadoc.resolve
Code IndexAdd Tabnine to your IDE (free)

How to use
resolve
method
in
org.eclipse.jdt.internal.compiler.ast.Javadoc

Best Java code snippets using org.eclipse.jdt.internal.compiler.ast.Javadoc.resolve (Showing top 20 results out of 315)

origin: org.eclipse.jdt/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
@Override
public void resolve(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(ClassScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
@Override
public void resolve(ClassScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(ClassScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(ClassScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(ClassScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: trylimits/Eclipse-Postfix-Code-Completion

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(ClassScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: trylimits/Eclipse-Postfix-Code-Completion

/**
 * Resolve completion node if not null and throw exception to let clients know
 * that it has been found.
 *
 * @throws CompletionNodeFound
 */
public void resolve(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.jdt.core.compiler/ecj

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: org.eclipse.jetty.orbit/org.eclipse.jdt.core

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: trylimits/Eclipse-Postfix-Code-Completion

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: org.eclipse.scout.sdk.deps/ecj

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

public void resolveJavadoc() {
  if (this.binding == null) return;
  if (this.javadoc != null) {
    this.javadoc.resolve(this.scope);
    return;
  }
  if (this.binding.declaringClass != null && !this.binding.declaringClass.isLocalType()) {
    // Set javadoc visibility
    int javadocVisibility = this.binding.modifiers & ExtraCompilerModifiers.AccVisibilityMASK;
    ClassScope classScope = this.scope.classScope();
    ProblemReporter reporter = this.scope.problemReporter();
    int severity = reporter.computeSeverity(IProblem.JavadocMissing);
    if (severity != ProblemSeverities.Ignore) {
      if (classScope != null) {
        javadocVisibility = Util.computeOuterMostVisibility(classScope.referenceType(), javadocVisibility);
      }
      int javadocModifiers = (this.binding.modifiers & ~ExtraCompilerModifiers.AccVisibilityMASK) | javadocVisibility;
      reporter.javadocMissing(this.sourceStart, this.sourceEnd, severity, javadocModifiers);
    }
  }
}
org.eclipse.jdt.internal.compiler.astJavadocresolve

Popular methods of Javadoc

  • <init>
  • print
  • canBeSeen
    Returns whether a type can be seen at a given visibility level or not.
  • printIndent
  • resolveParamTags
  • resolveReference
  • resolveThrowsTags
  • resolveTypeParameterTags
  • traverse
  • verifyTypeReference
  • getNodeStartingAt
  • toString
  • getNodeStartingAt,
  • toString,
  • sourceEnd

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • getSupportFragmentManager (FragmentActivity)
  • setScale (BigDecimal)
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • JComboBox (javax.swing)
  • Option (scala)
  • Top PhpStorm plugins
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