- java.lang.Object
-
- org.mal_lang.langspec.Steps
-
public final class Steps extends Object
Immutable class representing steps of an attack step in a MAL language.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<StepExpression>
getStepExpressions()
Returns a list of all step expressions in thisSteps
object.boolean
overrides()
Returns whether thisSteps
object overrides.
-
-
-
Method Detail
-
overrides
public boolean overrides()
Returns whether thisSteps
object overrides.- Returns:
- whether this
Steps
object overrides - Since:
- 1.0.0
-
getStepExpressions
public List<StepExpression> getStepExpressions()
Returns a list of all step expressions in thisSteps
object.- Returns:
- a list of all step expressions in this
Steps
object - Since:
- 1.0.0
-
-