1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 16:55:38 +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. * Process the given event and indicate completion with request monitor.
*/ */
public void handleEvent(final Object event, RequestMonitor rm); public void handleEvent(final Object event, RequestMonitor rm);
/** /**
* Returns whether the event handling manager should wait for this listener * Returns whether the event handling manager should wait for this listener
* to complete handling this event, or whether the event listener can process * to complete handling an event given to it via
* the event asynchronously. * {@link #handleEvent(Object, RequestMonitor)}, or whether the event
* listener can process that event asynchronously.
*/ */
public boolean shouldWaitHandleEventToComplete(); public boolean shouldWaitHandleEventToComplete();
} }