Package org.aspectj.ajde.core

Examples of org.aspectj.ajde.core.AjCompiler


   *
   * @param configFile
   * @param buildFresh - true if want to do a full build, false otherwise
   */
  public void runBuildInSameThread(String configFile, boolean buildFresh) {
    AjCompiler c = getCompilerForConfigFile(configFile);
    if (c == null)
      return;
    if (buildFresh) {
      c.buildFresh();
    } else {
      c.build();
    }
  }
View Full Code Here


   *
   * @param configFile
   * @param buildFresh - true if want to do a full build, false otherwise
   */
  public void runBuildInDifferentThread(String configFile, boolean buildFresh) {
    AjCompiler c = getCompilerForConfigFile(configFile);
    if (c == null)
      return;
    CompilerThread compilerThread = new CompilerThread(c, buildFresh);
    compilerThread.start();
  }
View Full Code Here

        // IncrementalStateManager's
        // list
        compiler.clearLastState();
      }
      getMessageHandler().reset();
      compiler = new AjCompiler(configFile, getCompilerConfig(), getBuildProgressMonitor(), getMessageHandler());
    }
    return compiler;
  }
View Full Code Here

TOP

Related Classes of org.aspectj.ajde.core.AjCompiler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.