This extension point is used to contribute steps. <p> A step defines a specific functionality to be executed during execution of a step group. Possible errors and warnings occuring during execution are passed to the parent stepper. Declares a step contribution. The unique id of the step contribution. The label representing the step within the UI. The class that implements <code>org.eclipse.tcf.te.runtime.stepper.interfaces.IStep</code> or extends <code>org.eclipse.tcf.te.runtime.stepper.AbstractContextStep</code>. <p> The step implementation class must be specified either by the class attribute or the class child element! A short description of the step to be presented in the UI. Used when creating an <code>IExecutableExtension</code> with a named parameter, or more than one. The class that implements <code>org.eclipse.tcf.te.runtime.stepper.interfaces.IStep</code> or extends <code>org.eclipse.tcf.te.runtime.stepper.AbstractContextStep</code>. <p> The step implementation class must be specified either by the class attribute or the class child element! A parameter for an <code>IExecutableExtension</code>. <p>The parameter name.</p> <p>The parameter value.</p> Declares a dependency to a required step or step group. The unique id of the required step or step group. Target Explorer 1.0.0 This is an example of the extension point usage: <p> <pre> <extension point="org.eclipse.tcf.te.runtime.stepper.steps"> <step id="org.eclipse.tcf.te.tcf.filesystem.copy" class="org.eclipse.tcf.te.tcf.filesystem.steps.CopyStep" label="Copy Files between Host and Target"> <description> Copy one or more files between the host and the target in both directions. </description> </step> </extension> </pre> The provider of a step must implement <samp>org.eclipse.tcf.te.runtime.stepper.interfaces.IStep</samp>. Copyright (c) 2011, 2012 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.