Class SequentialFunctionChart.SfcStep
java.lang.Object
neqsim.process.controllerdevice.SequentialFunctionChart.SfcStep
- All Implemented Interfaces:
Serializable
- Enclosing class:
SequentialFunctionChart
A step in the Sequential Function Chart. Each step has a name and optional entry, active, and
exit actions following IEC 61131-3 conventions.
- Version:
- 1.0
- Author:
- NeqSim
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the active action.Gets the entry action.Gets the exit action.getName()Gets the step name.voidsetActiveAction(Runnable action) Sets the active action executed every timestep while this step is active.voidsetEntryAction(Runnable action) Sets the entry action executed once when transitioning into this step.voidsetExitAction(Runnable action) Sets the exit action executed once when leaving this step.
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
name
-
entryAction
-
activeAction
-
exitAction
-
-
Constructor Details
-
SfcStep
-
-
Method Details
-
getName
-
setEntryAction
Sets the entry action executed once when transitioning into this step.- Parameters:
action- the entry action
-
getEntryAction
-
setActiveAction
Sets the active action executed every timestep while this step is active.- Parameters:
action- the active action
-
getActiveAction
-
setExitAction
Sets the exit action executed once when leaving this step.- Parameters:
action- the exit action
-
getExitAction
-