Interface ChartStepProperties
- All Known Subinterfaces:
ActionStepProperties
,AssertionStepProperties
,BeginStepProperties
,EnclosingStepProperties
,EndStepProperties
- All Known Implementing Classes:
AbstractActionStepDelegate
,AbstractAssertionStepDelegate
,AbstractBeginStepDelegate
,AbstractEnclosingStepDelegate
,AbstractEndStepDelegate
,ActionStepEditor
,ActionStepUI.ActionStepFactory
,AssertionStepUI.AssertionStepFactory
,BeginStepEditor
,BeginStepUI.BeginStepFactory
,EnclosingStepEditor
,EnclosingStepUI.EnclosingStepFactory
,EndStepUI.EndStepFactory
public interface ChartStepProperties
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Property<JSONObject>
This property represents some arbitrary data that can be associated with a step.The step factory ID identifies what kind of step this is.The name of the step.
-
Field Details
-
Name
The name of the step. Should be unique chart-wide. -
Breakpoint
-
FactoryId
The step factory ID identifies what kind of step this is. The value is used as the factory ID in the client's StepRegistry to provide custom UIs for the step, as well as in the gateway's step api to provide custom implementation for the step. -
AssociatedData
This property represents some arbitrary data that can be associated with a step. Different steps will do different things with this information. The standard action is to copy this information into the step's scope when the step becomes activated. Enclosing steps will treat this data as an extension of the chart parameters; they will copy this data into the enclosed chart's scope.
-