1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Documentation enhancement

This commit is contained in:
John Cortell 2009-10-02 16:04:01 +00:00
parent e5d01853a5
commit abd87e7609

View file

@ -156,8 +156,17 @@ abstract public class AbstractVMProvider implements IVMProvider, IVMEventListene
}
private class ModelProxyEventQueue {
EventInfo fCurrentEvent = null;
RequestMonitor fCurrentRm = null;
/** The event actively being handled */
EventInfo fCurrentEvent;
/**
* The request monitor we created to handle fCurrentEvent. It is
* responsible for calling <code>done</code> on the client RM of that
* event.
*/
RequestMonitor fCurrentRm;
/** The queue */
List<EventInfo> fEventQueue = new LinkedList<EventInfo>();
}