Example usage for org.eclipse.jdt.internal.compiler SourceElementParser SourceElementParser

List of usage examples for org.eclipse.jdt.internal.compiler SourceElementParser SourceElementParser

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler SourceElementParser SourceElementParser.

Prototype

public SourceElementParser(ISourceElementRequestor requestor, IProblemFactory problemFactory,
            CompilerOptions options, boolean reportLocalDeclarations, boolean optimizeStringLiterals,
            boolean useSourceJavadocParser) 

Source Link

Usage

From source file:org.codehaus.jdt.groovy.integration.DefaultLanguageSupport.java

License:Open Source License

public SourceElementParser getSourceElementParser(ISourceElementRequestor requestor,
        IProblemFactory problemFactory, CompilerOptions options, boolean reportLocalDeclarations,
        boolean optimizeStringLiterals, boolean useSourceJavadocParser) {
    return new SourceElementParser(requestor, problemFactory, options, reportLocalDeclarations,
            optimizeStringLiterals, useSourceJavadocParser);
}