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

gherkin.ast.TableCell Maven / Gradle / Ivy

The newest version!
package gherkin.ast;

public class TableCell extends Node {
    private final String value;

    public TableCell(Location location, String value) {
        super(location);
        this.value = value;
    }

    public String getValue() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy