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

gherkin.ast.DocString Maven / Gradle / Ivy

The newest version!
package gherkin.ast;

public class DocString extends Node {
    private final String contentType;
    private final String content;

    public DocString(Location location, String contentType, String content) {
        super(location);
        this.contentType = contentType;
        this.content = content;
    }

    public String getContent() {
        return content;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy