org.eclipse.jdt.core.dom.Javadoc.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(102)

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

Javadoc.<init>介绍

[英]Creates a new AST node for a doc comment owned by the given AST. The new node has an empty list of tag elements (and, for backwards compatability, an unspecified, but legal, doc comment string).

N.B. This constructor is package-private; all subclasses must be declared in the same package; clients are unable to declare additional subclasses.
[中]为给定AST拥有的文档注释创建新AST节点。新节点有一个空的标记元素列表(为了向后兼容,还有一个未指定但合法的文档注释字符串)。
注意:此构造函数是包私有的;所有子类必须在同一个包中声明;客户端无法声明其他子类。

代码示例

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

/**
 * Creates and returns a new doc comment node.
 * Initially the new node has an empty list of tag elements
 * (and, for backwards compatability, an unspecified, but legal,
 * doc comment string)
 *
 * @return a new unparented doc comment node
 */
public Javadoc newJavadoc() {
  Javadoc result = new Javadoc(this);
  return result;
}

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

/**
 * Creates and returns a new doc comment node.
 * Initially the new node has an empty list of tag elements
 * (and, for backwards compatability, an unspecified, but legal,
 * doc comment string)
 *
 * @return a new unparented doc comment node
 */
public Javadoc newJavadoc() {
  Javadoc result = new Javadoc(this);
  return result;
}

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

/**
 * Creates and returns a new doc comment node.
 * Initially the new node has an empty list of tag elements
 * (and, for backwards compatability, an unspecified, but legal,
 * doc comment string)
 *
 * @return a new unparented doc comment node
 */
public Javadoc newJavadoc() {
  Javadoc result = new Javadoc(this);
  return result;
}

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

/**
 * Creates and returns a new doc comment node.
 * Initially the new node has an empty list of tag elements
 * (and, for backwards compatability, an unspecified, but legal,
 * doc comment string)
 *
 * @return a new unparented doc comment node
 */
public Javadoc newJavadoc() {
  Javadoc result = new Javadoc(this);
  return result;
}

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

/**
 * Creates and returns a new doc comment node.
 * Initially the new node has an empty list of tag elements
 * (and, for backwards compatability, an unspecified, but legal,
 * doc comment string)
 *
 * @return a new unparented doc comment node
 */
public Javadoc newJavadoc() {
  Javadoc result = new Javadoc(this);
  return result;
}

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

/**
 * Creates and returns a new doc comment node.
 * Initially the new node has an empty list of tag elements
 * (and, for backwards compatability, an unspecified, but legal,
 * doc comment string)
 *
 * @return a new unparented doc comment node
 */
public Javadoc newJavadoc() {
  Javadoc result = new Javadoc(this);
  return result;
}

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

public Javadoc parse(int start, int length) {
  // Init
  this.source = this.scanner.source;
  this.lineEnds = this.scanner.lineEnds;
  this.docComment = new Javadoc(this.ast);
  // Parse
  if (this.checkDocComment) {
    this.javadocStart = start;
    this.javadocEnd = start+length-1;
    this.firstTagPosition = this.javadocStart;
    commentParse();
  }
  this.docComment.setSourceRange(start, length);
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    setComment(start, length);  // backward compatibility
  }
  return this.docComment;
}

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

public Javadoc parse(int start, int length) {
  // Init
  this.source = this.scanner.source;
  this.lineEnds = this.scanner.lineEnds;
  this.docComment = new Javadoc(this.ast);
  // Parse
  if (this.checkDocComment) {
    this.javadocStart = start;
    this.javadocEnd = start+length-1;
    this.firstTagPosition = this.javadocStart;
    commentParse();
  }
  this.docComment.setSourceRange(start, length);
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    setComment(start, length);  // backward compatibility
  }
  return this.docComment;
}

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

public Javadoc parse(int start, int length) {
  // Init
  this.source = this.scanner.source;
  this.lineEnds = this.scanner.lineEnds;
  this.docComment = new Javadoc(this.ast);
  // Parse
  if (this.checkDocComment) {
    this.javadocStart = start;
    this.javadocEnd = start+length-1;
    this.firstTagPosition = this.javadocStart;
    commentParse();
  }
  this.docComment.setSourceRange(start, length);
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    setComment(start, length);  // backward compatibility
  }
  return this.docComment;
}

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

public Javadoc parse(int start, int length) {
  // Init
  this.source = this.scanner.source;
  this.lineEnds = this.scanner.lineEnds;
  this.docComment = new Javadoc(this.ast);
  // Parse
  if (this.checkDocComment) {
    this.javadocStart = start;
    this.javadocEnd = start+length-1;
    this.firstTagPosition = this.javadocStart;
    commentParse();
  }
  this.docComment.setSourceRange(start, length);
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    setComment(start, length);  // backward compatibility
  }
  return this.docComment;
}

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

public Javadoc parse(int start, int length) {
  // Init
  this.source = this.scanner.source;
  this.lineEnds = this.scanner.lineEnds;
  this.docComment = new Javadoc(this.ast);
  // Parse
  if (this.checkDocComment) {
    this.javadocStart = start;
    this.javadocEnd = start+length-1;
    this.firstTagPosition = this.javadocStart;
    commentParse();
  }
  this.docComment.setSourceRange(start, length);
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    setComment(start, length);  // backward compatibility
  }
  return this.docComment;
}

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

ASTNode clone0(AST target) {
  Javadoc result = new Javadoc(target);
  result.setSourceRange(getStartPosition(), getLength());
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    result.setComment(getComment());
  }
  result.tags().addAll(ASTNode.copySubtrees(target, tags()));
  return result;
}

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

public Javadoc parse(int start, int length) {
  // Init
  this.source = this.scanner.source;
  this.lineEnds = this.scanner.lineEnds;
  this.docComment = new Javadoc(this.ast);
  // Parse
  if (this.checkDocComment) {
    this.javadocStart = start;
    this.javadocEnd = start+length-1;
    this.firstTagPosition = this.javadocStart;
    commentParse();
  }
  this.docComment.setSourceRange(start, length);
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    setComment(start, length);  // backward compatibility
  }
  return this.docComment;
}

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

@Override
ASTNode clone0(AST target) {
  Javadoc result = new Javadoc(target);
  result.setSourceRange(getStartPosition(), getLength());
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    result.setComment(getComment());
  }
  result.tags().addAll(ASTNode.copySubtrees(target, tags()));
  return result;
}

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

ASTNode clone0(AST target) {
  Javadoc result = new Javadoc(target);
  result.setSourceRange(getStartPosition(), getLength());
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    result.setComment(getComment());
  }
  result.tags().addAll(ASTNode.copySubtrees(target, tags()));
  return result;
}

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

ASTNode clone0(AST target) {
  Javadoc result = new Javadoc(target);
  result.setSourceRange(getStartPosition(), getLength());
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    result.setComment(getComment());
  }
  result.tags().addAll(ASTNode.copySubtrees(target, tags()));
  return result;
}

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

ASTNode clone0(AST target) {
  Javadoc result = new Javadoc(target);
  result.setSourceRange(getStartPosition(), getLength());
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    result.setComment(getComment());
  }
  result.tags().addAll(ASTNode.copySubtrees(target, tags()));
  return result;
}

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

ASTNode clone0(AST target) {
  Javadoc result = new Javadoc(target);
  result.setSourceRange(getStartPosition(), getLength());
  if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
    result.setComment(getComment());
  }
  result.tags().addAll(ASTNode.copySubtrees(target, tags()));
  return result;
}

相关文章