public interface IActionStepEnd
IActionStepEnd object is a "virtual" action step that succeeds the
last "real" action step of a scenario from the COCKPIT use case module. Using this object
you can get references to extension scenarios and extension use cases ending after
the last "real" action step of a scenario.| Modifier and Type | Method and Description |
|---|---|
java.util.List<? extends IScenario> |
getEndingExtensionScenarios()
Returns the extension scenarios ending at the action step.
|
java.util.List<? extends IScenario> |
getEndingExtensionScenarios(java.lang.String sortingProperty)
Returns the extension scenarios ending at the action step.
|
java.util.List<? extends IUseCase> |
getEndingExtensionUseCases()
Returns the extension use cases ending at the action step.
|
java.util.List<? extends IUseCase> |
getEndingExtensionUseCases(int sortingCriterion)
Returns the extension use cases ending at the action step.
|
java.util.List<? extends IUseCase> |
getEndingExtensionUseCases(java.lang.String sortingProperty)
Returns the extension use cases ending at the action step.
|
IScenario |
getScenario()
Returns the scenario the action step belongs to.
|
java.util.List<? extends IScenario> |
getStartingExtensionScenarios()
Returns the extension scenarios starting at the action step.
|
java.util.List<? extends IScenario> |
getStartingExtensionScenarios(java.lang.String sortingProperty)
Returns the extension scenarios starting at the action step.
|
java.util.List<? extends IUseCase> |
getStartingExtensionUseCases()
Returns the extension use cases starting at the action step.
|
java.util.List<? extends IUseCase> |
getStartingExtensionUseCases(int sortingCriterion)
Returns the extension use cases starting at the action step
|
java.util.List<IUseCase> |
getStartingExtensionUseCases(java.lang.String sortingProperty)
Returns the extension use cases starting at the action step.
|
boolean |
isEndOfExtensionScenarios()
Checks whether the action step is the end point of extension scenarios.
|
boolean |
isEndOfExtensionUseCases()
Checks whether the action step is the end point of extension use cases.
|
boolean |
isStartOfExtensionScenarios()
Checks whether the action step is the starting point of extension scenarios.
|
boolean |
isStartOfExtensionUseCases()
Checks whether the action step is the starting point of extension use cases.
|
IScenario getScenario()
boolean isStartOfExtensionScenarios()
java.util.List<? extends IScenario> getStartingExtensionScenarios()
The scenarios are sorted by id.
java.util.List<? extends IScenario> getStartingExtensionScenarios(java.lang.String sortingProperty)
sortingProperty - the custom property which shall be used as a criterion for
sortingboolean isStartOfExtensionUseCases()
java.util.List<? extends IUseCase> getStartingExtensionUseCases()
The use cases are sorted by id.
java.util.List<? extends IUseCase> getStartingExtensionUseCases(int sortingCriterion)
sortingCriterion - the criterion for sorting. Use the
integer constants in IUseCaseDataProvider.java.util.List<IUseCase> getStartingExtensionUseCases(java.lang.String sortingProperty)
sortingProperty - specifies the custom property which shall be used as a criterion for
sorting.boolean isEndOfExtensionScenarios()
java.util.List<? extends IScenario> getEndingExtensionScenarios()
The scenarios are sorted by id.
java.util.List<? extends IScenario> getEndingExtensionScenarios(java.lang.String sortingProperty)
sortingProperty - specifies the custom property which shall be used as a criterion for
sorting.boolean isEndOfExtensionUseCases()
java.util.List<? extends IUseCase> getEndingExtensionUseCases()
The use cases are sorted by id.
java.util.List<? extends IUseCase> getEndingExtensionUseCases(int sortingCriterion)
sortingCriterion - specifies the criterion for sorting. Use the
integer constants in IUseCaseDataProvider.java.util.List<? extends IUseCase> getEndingExtensionUseCases(java.lang.String sortingProperty)
sortingProperty - specifies the custom property which shall be used as a criterion for
sorting.