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 SummaryFields Modifier and Type Field Description static Property<JSONObject>AssociatedDataThis property represents some arbitrary data that can be associated with a step.static Property<java.lang.Boolean>Breakpointstatic Property<java.lang.String>FactoryIdThe step factory ID identifies what kind of step this is.static Property<java.lang.String>NameThe name of the step.
 
- 
- 
- 
Field Detail- 
Namestatic final Property<java.lang.String> Name The name of the step. Should be unique chart-wide.
 - 
Breakpointstatic final Property<java.lang.Boolean> Breakpoint 
 - 
FactoryIdstatic final Property<java.lang.String> 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.
 - 
AssociatedDatastatic final Property<JSONObject> 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.
 
- 
 
-