Package io.cucumber.messages.types
Class Tag
- java.lang.Object
-
- io.cucumber.messages.types.Tag
-
public class Tag extends Object
* A tag
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)StringgetId()Unique ID to be able to reference the Tag from PickleTag (Required)LocationgetLocation()* Points to a line and a column in a text file (Required)StringgetName()The name of the tag (including the leading `@`) (Required)inthashCode()voidsetId(String id)Unique ID to be able to reference the Tag from PickleTag (Required)voidsetLocation(Location location)* Points to a line and a column in a text file (Required)voidsetName(String name)The name of the tag (including the leading `@`) (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)
-
getName
public String getName()
The name of the tag (including the leading `@`) (Required)
-
setName
public void setName(String name)
The name of the tag (including the leading `@`) (Required)
-
getId
public String getId()
Unique ID to be able to reference the Tag from PickleTag (Required)
-
setId
public void setId(String id)
Unique ID to be able to reference the Tag from PickleTag (Required)
-
-