All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gherkin.formatter.model.DataTableRow Maven / Gradle / Ivy

There is a newer version: 2.12.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy