Example usage for org.aspectj.tools.ajc Main quit

List of usage examples for org.aspectj.tools.ajc Main quit

Introduction

In this page you can find the example usage for org.aspectj.tools.ajc Main quit.

Prototype

public void quit() 

Source Link

Document

call this to stop after the next iteration of incremental compile

Usage

From source file:org.eclipse.ajdt.core.ant.AjcTask.java

License:Open Source License

/**
 * Halt processing. This tells main in the same vm to quit. It fails when running in forked mode.
 * /*from w ww . j  a  va 2  s . c  o m*/
 * @return true if not in forked mode and main has quit or been told to quit
 */
public boolean quit() {
    if (executingInOtherVM) {
        return false;
    }
    Main me = main;
    if (null != me) {
        me.quit();
    }
    return true;
}