List of usage examples for org.aspectj.bridge MessageUtil info
public static boolean info(IMessageHandler handler, String message)
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); } }