Package io.cucumber.messages.types
Class Step
- java.lang.Object
-
- io.cucumber.messages.types.Step
-
public class Step extends Object
A step
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)DataTablegetDataTable()DocStringgetDocString()StringgetId()Unique ID to be able to reference the Step from PickleStep (Required)StringgetKeyword()(Required)LocationgetLocation()* Points to a line and a column in a text file (Required)StringgetText()(Required)inthashCode()voidsetDataTable(DataTable dataTable)voidsetDocString(DocString docString)voidsetId(String id)Unique ID to be able to reference the Step from PickleStep (Required)voidsetKeyword(String keyword)(Required)voidsetLocation(Location location)* Points to a line and a column in a text file (Required)voidsetText(String text)(Required)StringtoString()
-
-
-
Method Detail
-
getLocation
public Location getLocation()
* Points to a line and a column in a text file (Required)
-
setLocation
public void setLocation(Location location)
* Points to a line and a column in a text file (Required)
-
getKeyword
public String getKeyword()
(Required)
-
setKeyword
public void setKeyword(String keyword)
(Required)
-
getText
public String getText()
(Required)
-
setText
public void setText(String text)
(Required)
-
getDocString
public DocString getDocString()
-
setDocString
public void setDocString(DocString docString)
-
getDataTable
public DataTable getDataTable()
-
setDataTable
public void setDataTable(DataTable dataTable)
-
getId
public String getId()
Unique ID to be able to reference the Step from PickleStep (Required)
-
setId
public void setId(String id)
Unique ID to be able to reference the Step from PickleStep (Required)
-
-