Class DocString
- java.lang.Object
-
- com.trivago.cluecumber.engine.json.pojo.DocString
-
public class DocString extends Object
The class to hold docstring information of steps.
-
-
Constructor Summary
Constructors Constructor Description DocString()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLine()Get the line number.StringgetValue()Get the value.StringreturnWithClickableLinks()Get this doc string with clickable HTML links.voidsetLine(int line)Set the line number.voidsetValue(String value)Set the value.
-
-
-
Method Detail
-
getLine
public int getLine()
Get the line number.- Returns:
- The line number.
-
setLine
public void setLine(int line)
Set the line number.- Parameters:
line- The line number.
-
getValue
public String getValue()
Get the value.- Returns:
- The value.
-
setValue
public void setValue(String value)
Set the value.- Parameters:
value- The value.
-
returnWithClickableLinks
public String returnWithClickableLinks()
Get this doc string with clickable HTML links.- Returns:
- The converted doc string.
-
-