Package com.inductiveautomation.sfc.api
Interface StepDelegate
- All Known Subinterfaces:
ClientStepFactory,StepFactory
- All Known Implementing Classes:
AbstractActionStepDelegate,AbstractAssertionStepDelegate,AbstractBeginStepDelegate,AbstractEnclosingStepDelegate,AbstractEndStepDelegate,ActionStepUI.ActionStepFactory,AssertionStepUI.AssertionStepFactory,BeginStepUI.BeginStepFactory,EnclosingStepUI.EnclosingStepFactory,EndStepUI.EndStepFactory
public interface StepDelegate
Base interface for factory that creates objects to represent steps. Also handles XML serialization for the step.
-
Method Summary
Modifier and TypeMethodDescriptionvoidfromXml(Element domElement, ChartUIElement uiElement) Given an XML DOM element, fill in the properties of theChartUIElement.getId()voidtoXml(XMLStreamWriter writer, ChartUIElement element, String tab) Serialize the given element (which is guaranteed to be a step element of this factory's type) to the stream writer.voidvalidate(ChartUIElement element, ChartCompilationResults compilationResults) Provides step implementations a chance to validate their settings.
-
Method Details
-
getId
String getId()- Returns:
- A unique string that identifies this kind of step, for example: "com.company.foostep".
-
toXml
Serialize the given element (which is guaranteed to be a step element of this factory's type) to the stream writer. Common step attributes (type, id, name, size, location) will have already been serialized, meaning, the xml stream will have just written the open <step> element. Close any elements you open.- Parameters:
writer- theXMLStreamWriterto write to.element- theChartUIElementto serialize.- Throws:
XMLStreamException
-
fromXml
Given an XML DOM element, fill in the properties of theChartUIElement. Just like for serializing, the id, location, and name will have already been handled.- Parameters:
domElement- the XML DOM element.uiElement- theChartUIElementto deserialize.- Throws:
XmlParseException
-
validate
Provides step implementations a chance to validate their settings. If the settings are invalid, they should add an error to the compilation results.- Parameters:
element- theChartUIElementto validate.compilationResults- theChartCompilationResults.
-
getCompilationAlteringProperties
- Returns:
- a list of properties that may alter this step's compilation validation.
-