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

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

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

Javadoc.setSourceRange介绍

暂无

代码示例

代码示例来源: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.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.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: 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.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

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: 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: 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.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.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.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;
}

相关文章