Example usage for org.aspectj.bridge MessageUtil info

List of usage examples for org.aspectj.bridge MessageUtil info

Introduction

In this page you can find the example usage for org.aspectj.bridge MessageUtil info.

Prototype

public static boolean info(IMessageHandler handler, String message) 

Source Link

Document

create and handle info message (ignored if handler is null)

Usage

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

License:Open Source License

/**
 * Called when compile or incremental compile is completing, this completes the output jar or directory by copying resources if
 * requested. Note: this is a callback run synchronously by the compiler. That means exceptions thrown here are caught by
 * Main.run(..) and passed to the message handler.
 *///from  w w w  .  j  a  v a  2s.c om
protected void doCompletionTasks() {
    if (!executing) {
        throw new IllegalStateException("should be executing");
    }
    if (null != outjar) {
        completeOutjar();
    } else {
        completeDestdir();
    }
    if (null != xdoneSignal) {
        MessageUtil.info(messageHolder, xdoneSignal);
    }
}