This extension point is used to contribute event listeners. A fully qualified name of the Java class implementing <code>org.eclipse.tcf.te.runtime.interfaces.events.IEventListener</code>. If set to <code>true</code> and if the contributing plug-in has not been activated yet, the plug-in will be forced to be activated by loading the event listener implementation class. If set to <code>false</code>, the default and the contributing plu-in has not been activated yet, the event listener implementation will be not invoked even if the event type matches one of the declared event types. A fully qualified name of the Java class implementing <code>java.util.EventObject</code>. The unique id of the bundle which contains the class loader required to load the event type class. If not specified, the extension points declaring bundle class loader is used. A fully qualified name of the Java class being used to match the event source type. If specified, the contributed notification listener is inheriting from the specified class or implementing the specified interface. The unique id of the bundle which contains the class loader required to load the event source type class. If not specified, the extension points declaring bundle class loader is used. Target Explorer 1.0.0 The following is an example of this extension point's usage: <p> <pre> <extension point="org.eclipse.tcf.te.runtime.eventListeners"> <eventListener class="org.eclipse.tcf.te.ui.MyEventListener" forcePluginActivation="false"> <eventType class="org.eclipse.tme.te.runtime.events.PropertyChangeEvent"/> </eventListener> </extension> </pre> The provider of a event listener must implement <samp>org.eclipse.tcf.te.runtime.interfaces.events.IEventListener</samp>. Copyright (c) 2011 Wind River Systems, Inc. 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.