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

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

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

origin: org.projectlombok/lombok.ast

  Javadoc parse(String rawInput, int from, int to) {
    char[] rawContent;
    
    rawContent = new char[to + GENERIC_JAVA_CLASS_SUFFIX.length];
    Arrays.fill(rawContent, 0, from, ' ');
    System.arraycopy(rawInput.substring(from, to).toCharArray(), 0, rawContent, from, to - from);
    // Eclipse crashes if there's no character following the javadoc.
    System.arraycopy(GENERIC_JAVA_CLASS_SUFFIX, 0, rawContent, to, GENERIC_JAVA_CLASS_SUFFIX.length);
    
    this.sourceLevel = ClassFileConstants.JDK1_6;
    this.scanner.setSource(rawContent);
    this.source = rawContent;
    this.javadocStart = from;
    this.javadocEnd = to;
    this.reportProblems = true;
    this.docComment = new Javadoc(this.javadocStart, this.javadocEnd);
    commentParse();
    this.docComment.valuePositions = -1;
    this.docComment.sourceEnd--;
    return docComment;
  }
}
origin: com.vaadin/vaadin-client-compiler-deps

public StringBuffer printStatement(int indent, StringBuffer output) {
  if (this.javadoc != null) {
    this.javadoc.print(indent, output);
  }
  return super.printStatement(indent, output);
}

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

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: com.ovea.tajin.server/tajin-server-tomcat7

  resolveReference(this.seeReferences[i], methScope);
resolveParamTags(methScope, reportMissing, compilerOptions.reportUnusedParameterIncludeDocCommentReference /* considerParamRefAsUsage*/);
resolveTypeParameterTags(methScope, reportMissing);
resolveThrowsTags(methScope, reportMissing);
origin: org.eclipse.jdt.core.compiler/ecj

syntheticTypeDeclaration.javadoc = new Javadoc(syntheticTypeDeclaration.declarationSourceStart, syntheticTypeDeclaration.declarationSourceStart);
this.javadoc.resolve(syntheticTypeDeclaration.staticInitializerScope);
this.javadoc.resolve(this.scope);
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  scope.problemReporter().javadocUnexpectedTag(param.tagSourceStart, param.tagSourceEnd);
resolveTypeParameterTags(scope, true);
  resolveReference(this.seeReferences[i], 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(MethodScope scope) {
  super.resolve(scope);
  internalResolve(scope);
}
origin: org.eclipse.jdt.core.compiler/ecj

public void traverse(ASTVisitor visitor, MethodScope scope) {
  if (visitor.visit(this, scope)) {
    if (this.javadoc != null) {
      this.javadoc.traverse(visitor, scope);
    }
    if (this.annotations != null) {
      int annotationsLength = this.annotations.length;
      for (int i = 0; i < annotationsLength; i++)
        this.annotations[i].traverse(visitor, scope);
    }
    if (this.type != null) {
      this.type.traverse(visitor, scope);
    }
    if (this.initialization != null)
      this.initialization.traverse(visitor, scope);
  }
  visitor.endVisit(this, scope);
}
}
origin: com.ovea.tajin.server/tajin-server-tomcat7

if (!canBeSeen(scope.problemReporter().options.reportInvalidJavadocTagsVisibility, modifiers)) {
  scope.problemReporter().javadocHiddenReference(typeReference.sourceStart, reference.sourceEnd, scope, modifiers);
  return;
  if (!canBeSeen(scope.problemReporter().options.reportInvalidJavadocTagsVisibility, resolvedType.modifiers)) {
    scope.problemReporter().javadocHiddenReference(typeReference.sourceStart, typeReference.sourceEnd, scope, resolvedType.modifiers);
    return;
origin: org.eclipse.jetty.orbit/org.eclipse.jdt.core

  resolveReference(this.seeReferences[i], methScope);
resolveParamTags(methScope, reportMissing, compilerOptions.reportUnusedParameterIncludeDocCommentReference /* considerParamRefAsUsage*/);
resolveTypeParameterTags(methScope, reportMissing && compilerOptions.reportMissingJavadocTagsMethodTypeParameters);
resolveThrowsTags(methScope, reportMissing);
origin: org.eclipse.jdt/org.eclipse.jdt.core

syntheticTypeDeclaration.javadoc = new Javadoc(syntheticTypeDeclaration.declarationSourceStart, syntheticTypeDeclaration.declarationSourceStart);
this.javadoc.resolve(syntheticTypeDeclaration.staticInitializerScope);
this.javadoc.resolve(this.scope);
origin: com.vaadin/vaadin-client-compiler-deps

  scope.problemReporter().javadocUnexpectedTag(param.tagSourceStart, param.tagSourceEnd);
resolveTypeParameterTags(scope, true);
  resolveReference(this.seeReferences[i], 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.eclipse.tycho/org.eclipse.jdt.core

public void traverse(ASTVisitor visitor, MethodScope scope) {
  if (visitor.visit(this, scope)) {
    if (this.javadoc != null) {
      this.javadoc.traverse(visitor, scope);
    }
    if (this.annotations != null) {
      int annotationsLength = this.annotations.length;
      for (int i = 0; i < annotationsLength; i++)
        this.annotations[i].traverse(visitor, scope);
    }
    if (this.type != null) {
      this.type.traverse(visitor, scope);
    }
    if (this.initialization != null)
      this.initialization.traverse(visitor, scope);
  }
  visitor.endVisit(this, scope);
}
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

if (!canBeSeen(scope.problemReporter().options.reportInvalidJavadocTagsVisibility, modifiers)) {
  scope.problemReporter().javadocHiddenReference(typeReference.sourceStart, reference.sourceEnd, scope, modifiers);
  return;
  if (!canBeSeen(scope.problemReporter().options.reportInvalidJavadocTagsVisibility, resolvedType.modifiers)) {
    scope.problemReporter().javadocHiddenReference(typeReference.sourceStart, typeReference.sourceEnd, scope, resolvedType.modifiers);
    return;
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  resolveReference(this.seeReferences[i], methScope);
resolveParamTags(methScope, reportMissing, compilerOptions.reportUnusedParameterIncludeDocCommentReference /* considerParamRefAsUsage*/);
resolveTypeParameterTags(methScope, reportMissing && compilerOptions.reportMissingJavadocTagsMethodTypeParameters);
resolveThrowsTags(methScope, reportMissing);
origin: org.eclipse.tycho/org.eclipse.jdt.core

syntheticTypeDeclaration.javadoc = new Javadoc(syntheticTypeDeclaration.declarationSourceStart, syntheticTypeDeclaration.declarationSourceStart);
this.javadoc.resolve(syntheticTypeDeclaration.staticInitializerScope);
this.javadoc.resolve(this.scope);
origin: org.eclipse.jdt.core.compiler/ecj

  scope.problemReporter().javadocUnexpectedTag(param.tagSourceStart, param.tagSourceEnd);
resolveTypeParameterTags(scope, true);
  resolveReference(this.seeReferences[i], scope);
origin: org.eclipse.scout.sdk.deps/ecj

public StringBuffer printStatement(int indent, StringBuffer output) {
  if (this.javadoc != null) {
    this.javadoc.print(indent, output);
  }
  return super.printStatement(indent, output);
}

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);
}
org.eclipse.jdt.internal.compiler.astJavadoc

Javadoc

Node representing a structured Javadoc comment

Most used methods

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

Popular in Java

  • Start an intent from android
  • startActivity (Activity)
  • requestLocationUpdates (LocationManager)
  • getApplicationContext (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Permission (java.security)
    Legacy security code; do not use.
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • CodeWhisperer 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