Example usage for org.eclipse.jdt.internal.compiler.batch Main subclass-usage

List of usage examples for org.eclipse.jdt.internal.compiler.batch Main subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.batch Main subclass-usage.

Usage

From source file org.eclipse.tycho.compiler.jdt.CompilerMain.java

/**
 * Several methods of JDT compiler {@link Main} are overridden to allow compiling in-process against
 * a JDK other than the current one. If {@link #setJavaHome(File)} is not invoked, this class
 * behaves just the same as its superclass.
 */
@SuppressWarnings({ "rawtypes", "unchecked" })

From source file org.thiesen.ecj4ant.CustomBatchCompiler.java

public class CustomBatchCompiler extends Main {

    CustomBatchCompiler(final PrintWriter outWriter, final PrintWriter errWriter,
            final boolean systemExitWhenFinished, final Map<?, ?> customDefaultOptions,
            final CompilationProgress compilationProgress) {
        super(outWriter, errWriter, systemExitWhenFinished, customDefaultOptions, compilationProgress);

From source file spoon.support.builder.JDTCompiler.java

public class JDTCompiler extends Main implements ICompilerRequestor {

    class Compiler extends org.eclipse.jdt.internal.compiler.Compiler {

        @SuppressWarnings("deprecation")
        public Compiler(INameEnvironment environment, IErrorHandlingPolicy policy, Map<?, ?> settings,