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

gherkin.ast.TableRow Maven / Gradle / Ivy

package gherkin.ast;

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

public class TableRow extends Node {
    private final List cells;

    public TableRow(Location location, List cells) {
        super(location);
        this.cells = Collections.unmodifiableList(cells);
    }

    public List getCells() {
        return cells;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy