gherkin.formatter.model.DataTableRow Maven / Gradle / Ivy
package gherkin.formatter.model;
import java.util.List;
public class DataTableRow extends Row {
private static final long serialVersionUID = 1L;
private transient final DiffType diffType;
public DataTableRow(List comments, List cells, Integer line) {
this(comments, cells, line, DiffType.NONE);
}
public DataTableRow(List comments, List cells, Integer line, DiffType diffType) {
super(comments, cells, line);
this.diffType = diffType;
}
public DiffType getDiffType() {
return diffType;
}
}