mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Documentation enhancement
This commit is contained in:
parent
e5d01853a5
commit
abd87e7609
1 changed files with 11 additions and 2 deletions
|
@ -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>();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue