Example usage for org.eclipse.jdt.core.dom DocCommentParser DocCommentParser

List of usage examples for org.eclipse.jdt.core.dom DocCommentParser DocCommentParser

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom DocCommentParser DocCommentParser.

Prototype

DocCommentParser(AST ast, Scanner scanner, boolean check) 

Source Link

Usage

From source file:org.eclipse.jdt.core.dom.ASTConverter.java

License:Open Source License

public void setAST(AST ast) {
    this.ast = ast;
    this.docParser = new DocCommentParser(this.ast, this.scanner, this.insideComments);
}