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

gherkin.ast.Background Maven / Gradle / Ivy

The newest version!
package gherkin.ast;

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

public class Background extends Node {
    private final String keyword;
    private final String name;
    private final String description;
    private final List steps;

    public Background(Location location, String keyword, String name, String description, List steps) {
        super(location);
        this.keyword = keyword;
        this.name = name;
        this.description = description;
        this.steps = Collections.unmodifiableList(steps);
    }

    public String getKeyword() {
        return keyword;
    }

    public String getName() {
        return name;
    }

    public String getDescription() {
        return description;
    }

    public List getSteps() {
        return steps;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy