Uses of Class
org.eclipse.actf.model.events.ModelEventType

Packages that use ModelEventType
org.eclipse.actf.accservice.core.win32.ia2   
org.eclipse.actf.accservice.core.win32.msaa   
org.eclipse.actf.model   
org.eclipse.actf.model.mozdom   
 

Uses of ModelEventType in org.eclipse.actf.accservice.core.win32.ia2
 

Methods in org.eclipse.actf.accservice.core.win32.ia2 with parameters of type ModelEventType
 void IA2GuiModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, Object[] params)
          register a listener to receive notification when events with the given eventTypes are fired within this model. The eventTypes should be obtained from one of the getModelEventTypes methods. Optional parameters can also be passed to facilitate additional side effects or for additional information about the context in which events are being fired. The only optional parameter is an int that specifies flags for MSAA event-processing.
 void IA2GuiModel.unregisterModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
          unregister a previously registered listener. The eventTypes should be obtained from either of the getModelEventTypes methods.
 

Uses of ModelEventType in org.eclipse.actf.accservice.core.win32.msaa
 

Methods in org.eclipse.actf.accservice.core.win32.msaa that return ModelEventType
 ModelEventType[] MsaaGuiModel.getModelEventTypes(Class sourceType)
          get the model event types for the given source type. A ModelEventType object describes the types of events that can be fired within the context of this runtime model. If the sourceType is null, then all of the event types of which this model is aware will be returned else only events that can be fired by the given sourceType will be returned. default implementation returns null
 

Methods in org.eclipse.actf.accservice.core.win32.msaa with parameters of type ModelEventType
 void MsaaGuiModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, Object[] params)
          register a listener to receive notification when events with the given eventTypes are fired within this model. The eventTypes should be obtained from one of the getModelEventTypes methods. Optional parameters can also be passed to facilitate additional side effects or for additional information about the context in which events are being fired. The only optional parameter is an int that specifies flags for MSAA event-processing.
protected  void MsaaGuiModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, Object[] params, String accServiceName)
           
 void MsaaGuiModel.unregisterModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
          unregister a previously registered listener.
protected  void MsaaGuiModel.unregisterModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, String accServiceName)
           
 

Uses of ModelEventType in org.eclipse.actf.model
 

Methods in org.eclipse.actf.model that return ModelEventType
 ModelEventType IRenderableModel.getModelEventType(Object eventId)
          get the ModelEventType instances associated with the given event id.
 ModelEventType AbstractRenderableModel.getModelEventType(Object eventId)
          get the ModelEventType instances associated with the given event id.
 ModelEventType[] IRenderableModel.getModelEventTypes(Class sourceType)
          get the model event types for the given source type.
 ModelEventType[] AbstractRenderableModel.getModelEventTypes(Class c)
          get the model event types for the given source type. default implementation returns null
 

Methods in org.eclipse.actf.model with parameters of type ModelEventType
 void IRenderableModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
          register a listener to receive notification when events with the given eventTypes are fired within this model.
 void AbstractRenderableModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
          register a listener to receive notification when events with the given eventTypes are fired within this model. equivalent to calling registerModelEventListener(listener, eventTypes, null)
 void IRenderableModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, Object[] params)
          register a listener to receive notification when events with the given eventTypes are fired within this model.
 void AbstractRenderableModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, Object[] params)
          register a listener to receive notification when events with the given eventTypes are fired within this model.
 void IRenderableModel.unregisterModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
          unregister a previously registered listener.
 void AbstractRenderableModel.unregisterModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
           
 

Uses of ModelEventType in org.eclipse.actf.model.mozdom
 

Methods in org.eclipse.actf.model.mozdom that return ModelEventType
 ModelEventType MozillaDomBrowserGuiModel.getModelEventType(Object eventId)
           
 ModelEventType[] MozillaDomBrowserGuiModel.getModelEventTypes(Class c)
           
 

Methods in org.eclipse.actf.model.mozdom with parameters of type ModelEventType
 void MozillaDomBrowserGuiModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)
           
 void MozillaDomBrowserGuiModel.registerModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes, Object[] params)
           
 void MozillaDomBrowserGuiModel.unregisterModelEventListener(IModelEventListener listener, ModelEventType[] eventTypes)