This extension point is used to contribute services. The unique id of the connection type contribution. An optional unique id to bind the service to. If no id is specified, the service contribution is added to the list of global unbound services. Declares a service contribution. The class that implements <code>org.eclipse.tcf.te.runtime.interfaces.services.IService</code> or extends <code>org.eclipse.tcf.te.runtime.services.AbstractService</code>. <p> The service implementation class must be specified either by the class attribute or the class child element! The name of the requested contributing bundle if different from the bundle declaring the contribution. <p>Used when creating an <code>IExecutableExtension</code> with a named parameter, or more than one.</p> The class that implements <code>org.eclipse.tcf.te.runtime.interfaces.services.IService</code> or extends <code>org.eclipse.tcf.te.runtime.services.AbstractService</code>. <p> The service implementation class must be specified either by the class attribute or the class child element! <p>A parameter for an <code>IExecutableExtension</code>.</p> <p>The parameter name.</p> <p>The parameter value.</p> The service type interface the contributed service is implementing. The unique id of the bundle which contains the class loader required to load the service type class. If not specified, the plugin's own class loader is used. Target Explorer 1.0.0 This is an example of the extension point usage: <p> <pre><code> <extension point="org.eclipse.tcf.te.runtime.services"> <service id="org.eclipse.tcf.te.runtime.service.myService" class="org.eclipse.tcf.te.runtime.service.MyServiceImpl" label="Service Contribution Example"> <serviceType class="org.eclipse.tcf.te.runtime.interfaces.services.IMyServiceInterface"/> </service> </extension> </code></pre> The provider of a service must implement <samp>org.eclipse.tcf.te.runtime.interfaces.services.IService</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.