Interface StepConfigFactory
-
- All Known Implementing Classes:
ActionStepEditor.ActionStepFactory
,AssertionStepEditor.AssertionStepFactory
,BeginStepEditor.BeginStepFactory
,EnclosingStepEditor.EnclosingStepFactory
public interface StepConfigFactory
A factory that creates editing UIs for SFC chart elements. If you add a new type of step, you'll want to register one of these with theStepConfigRegistry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ElementEditor
createConfigUI(ChartUIModel model, ChartUIElement element)
Create the editnig UI for the given chart elementvoid
initPopupMenu(ChartUIModel model, ChartUIElement element, javax.swing.JPopupMenu menu)
A chance for the step to add config actions for a chart element.
-
-
-
Method Detail
-
createConfigUI
ElementEditor createConfigUI(ChartUIModel model, ChartUIElement element)
Create the editnig UI for the given chart element
-
initPopupMenu
void initPopupMenu(ChartUIModel model, ChartUIElement element, javax.swing.JPopupMenu menu)
A chance for the step to add config actions for a chart element.
-
-