Web Browser Event Listener
Identifier:
org.eclipse.actf.model.ui.webBrowserEventListener
Description:
This extension point is used to add new Event Listeners to ACTF Web Browsers. Listeners can receive browser events, such as title change, navigate complete, etc.. (See IWebBrowserACTFEventListener for more details about events.)
Configuration Markup:
<!ELEMENT extension (listener+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
- point - a fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT listener EMPTY>
<!ATTLIST listener
class CDATA #REQUIRED
>
- class - the name of a class that implements org.eclipse.actf.model.ui.editor.browser.IWebBrowserACTFEventListener.
Examples:
The following is an example of an extension definition:
<extension
point="org.eclipse.actf.model.ui.webBrowserEventListener">
<listener
class="org.eclipse.actf.ai.navigator.impl.WebEventListener"/>
</extension>
API Information:
The contributor will add new Event Listener by using listner attribute. The specified class must implement org.eclipse.actf.model.ui.editor.browser.IWebBrowserACTFEventListener.
Supplied Implementation:
org.eclipse.actf.ai.navigator plugin has an implementation of this extension. (If you include the plugin, the Event Listener will be automatically registerd to this extension.)
Copyright (c) 2007, 2008 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html