Class Match
- java.lang.Object
-
- com.trivago.cluecumber.engine.json.pojo.Match
-
public class Match extends Object
The match of theResultMatch.
-
-
Constructor Summary
Constructors Constructor Description Match()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Argument>getArguments()Get the list of arguments of the step method.StringgetLocation()Get the class and method where this step is defined.voidsetArguments(List<Argument> arguments)Set the list of arguments of the step method.voidsetLocation(String location)Set the class and method where this step is defined.
-
-
-
Method Detail
-
getLocation
public String getLocation()
Get the class and method where this step is defined.- Returns:
- The location string.
-
setLocation
public void setLocation(String location)
Set the class and method where this step is defined.- Parameters:
location- The location string.
-
getArguments
public List<Argument> getArguments()
Get the list of arguments of the step method.- Returns:
- The
Argumentlist.
-
-