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

gherkin.ast.DataTable Maven / Gradle / Ivy

package gherkin.ast;

import java.util.Collections;
import java.util.List;

public class DataTable extends Node {
    private final List rows;

    public DataTable(List rows) {
        super(rows.get(0).getLocation());
        this.rows = Collections.unmodifiableList(rows);
    }

    public List getRows() {
        return rows;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy