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

gherkin.ast.Examples Maven / Gradle / Ivy

The newest version!
package gherkin.ast;

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

public class Examples extends Node {
    private final List tags;
    private final String keyword;
    private final String name;
    private final String description;
    private final TableRow tableHeader;
    private final List tableBody;

    public Examples(Location location, List tags, String keyword, String name, String description, TableRow tableHeader, List tableBody) {
        super(location);
        this.tags = Collections.unmodifiableList(tags);
        this.keyword = keyword;
        this.name = name;
        this.description = description;
        this.tableHeader = tableHeader;
        this.tableBody = Collections.unmodifiableList(tableBody);
    }

    public String getKeyword() {
        return keyword;
    }

    public String getName() {
        return name;
    }

    public String getDescription() {
        return description;
    }

    public List getTableBody() {
        return tableBody;
    }

    public TableRow getTableHeader() {
        return tableHeader;
    }

    public List getTags() {
        return tags;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy