1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

JavaDoc enhancement

This commit is contained in:
John Cortell 2009-09-21 21:48:30 +00:00
parent 14717d43de
commit b8eab3668b

View file

@ -30,11 +30,12 @@ public interface IVMEventListener {
* Process the given event and indicate completion with request monitor.
*/
public void handleEvent(final Object event, RequestMonitor rm);
/**
* Returns whether the event handling manager should wait for this listener
* to complete handling this event, or whether the event listener can process
* the event asynchronously.
* to complete handling an event given to it via
* {@link #handleEvent(Object, RequestMonitor)}, or whether the event
* listener can process that event asynchronously.
*/
public boolean shouldWaitHandleEventToComplete();
}