Interface ExceptionType
-
- All Superinterfaces:
ScenarioNode
@OpenApiAll public interface ExceptionType extends ScenarioNode
Exception type of flow scenario.- See Also:
ScenarioManager
,ScenarioFactory
,Scenario
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class
getClazz()
Gets class which represents exception type.java.util.List<FlowStep>
getExceptionalFlowSteps()
Get exceptional flow steps of exception type.ExceptionHandler
getExceptionHandler()
Gets exception type handler.InputPin
getInputPin()
Gets input pin of exception type.FlowStep
getParentFlowStep()
Gets exception type parent flow step.StructuredActivityNode
getStructuredActivityNode()
Gets structured node which represents this exception type.-
Methods inherited from interface com.nomagic.magicdraw.usecasescenarios.scenarios.ScenarioNode
belongsToIncludedExtending, getElement, getEnd, getHumanType, getName, getParent, getParentContainer, getStart, isEditable, setName
-
-
-
-
Method Detail
-
getStructuredActivityNode
StructuredActivityNode getStructuredActivityNode()
Gets structured node which represents this exception type.- Returns:
- structured node which represents this exception type.
-
getInputPin
InputPin getInputPin()
Gets input pin of exception type.- Returns:
- input pin of exception type.
-
getParentFlowStep
FlowStep getParentFlowStep()
Gets exception type parent flow step.- Returns:
- exception type parent flow step.
-
getExceptionalFlowSteps
java.util.List<FlowStep> getExceptionalFlowSteps()
Get exceptional flow steps of exception type.- Returns:
- exceptional flow steps of exception type.
-
getClazz
Class getClazz()
Gets class which represents exception type.- Returns:
- class which represents exception type.
-
getExceptionHandler
ExceptionHandler getExceptionHandler()
Gets exception type handler.- Returns:
- exception type handler.
-
-