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

gherkin.formatter.model.DescribedStatement Maven / Gradle / Ivy

There is a newer version: 2.12.2
Show newest version
package gherkin.formatter.model;

import java.util.List;

public abstract class DescribedStatement extends BasicStatement {
    private final String description;

    public DescribedStatement(List comments, String keyword, String name, String description, Integer line) {
        super(comments, keyword, name, line);
        this.description = description;
    }

    public String getDescription() {
        return description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy