List of usage examples for org.eclipse.jdt.internal.compiler ICompilerRequestor interface-usage
From source file fr.inria.astor.core.manipulation.compiler.bytecode.JDTByteCodeCompiler.java
/** * From Spoonload (old JDTCompiler) * */ public class JDTByteCodeCompiler implements ICompilerRequestor {
From source file fr.irisa.diversify.spoon.utils.MyJDTBuilder.java
public class MyJDTBuilder extends JDTCompiler implements ICompilerRequestor { private boolean success; /*public boolean compileSrc(Factory f, List<CtFile> files) throws Exception { if (files.isEmpty())
From source file io.gige.compiler.internal.CompilerRequestorImpl.java
/** * @author taichi */ public class CompilerRequestorImpl implements ICompilerRequestor { final StandardJavaFileManager manager;
From source file io.takari.maven.plugins.compile.jdt.CompilerJdt.java
/**
* @TODO test classpath order changes triggers rebuild of affected sources (same type name, different classes)
* @TODO figure out why JDT needs to worry about duplicate types (maybe related to classpath order above)
* @TODO test affected sources are recompiled after source gets compile error
* @TODO test nested types because addDependentsOf has some special handling
*/
From source file ma.glasnost.orika.impl.generator.eclipsejdt.CompilerRequestor.java
public class CompilerRequestor implements ICompilerRequestor { private Map<String, byte[]> compiledClassFiles; private IProblem[] problems; public CompilerRequestor() {
From source file net.sf.j2s.core.builder.AbstractImageBuilder.java
/** * The abstract superclass of Java builders. * Provides the building and compilation mechanism * in common with the batch and incremental builders. */ public abstract class AbstractImageBuilder implements ICompilerRequestor, ICompilationUnitLocator {
From source file org.ant4eclipse.lib.jdt.ecj.internal.tools.CompilerRequestorImpl.java
/**
* <p>
* Implements the call-back interface {@link ICompilerRequestor} for receiving compilation results. The
* {@link CompilerRequestorImpl} writes the compiled class files to disc or reports the errors in case the compilation
* was not successful.
* </p>
From source file org.apache.sling.scripting.java.jdt.CompilationUnit.java
public class CompilationUnit implements ICompilationUnit, INameEnvironment, ICompilerRequestor { private final Options options; private final SlingIOProvider ioProvider; private final String className; private final String sourceFile;
From source file org.apache.tuscany.maven.compiler.CompilerRequestor.java
class CompilerRequestor implements ICompilerRequestor { private String outputDirectory; private boolean showWarnings; private List<CompilerError> compilerErrors; public CompilerRequestor(String outputDirectory, boolean showWarnings, List<CompilerError> compilerErrors) {
From source file org.conqat.engine.java.ecj.CollectingCompilerRequestor.java
/**
* This requestor stores all compilation results of the compile process. For
* large systems this can be very memory-intensive.
*
* @author deissenb
* @author $Author: kinnen $