Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d648584c8a49675bec276019b4662081ffa55aaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*******************************************************************************
 * 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
 *
 * Contributors:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.runtime.stepper.interfaces;

/**
 * Common stepper configuration property definitions.
 * <p>
 * Stepper are configured by setting properties within the properties container passed to the stepper via the
 * {@link IContextStepper#initialize(org.eclipse.tcf.te.runtime.interfaces.properties.IPropertiesContainer, IFullQualifiedId, org.eclipse.core.runtime.IProgressMonitor)}
 * call.
 */
public interface IContextStepperProperties {

	/**
	 * The id of the step group to execute by the stepper.
	 * <p>
	 * Type: String
	 */
	public static final String PROP_STEP_GROUP_ID = "stepGroupID"; //$NON-NLS-1$

	/**
	 * A name describing to the user what the stepper is executing.
	 * <p>
	 * Type: String
	 */
	public static final String PROP_NAME = "name"; //$NON-NLS-1$

	/**
	 * The context objects the stepper is working on.
	 * <p>
	 * Type: Array of {@link IContext}
	 */
	public static final String PROP_CONTEXTS = "contexts"; //$NON-NLS-1$
}

Back to the top