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

gherkin.ast.Tag Maven / Gradle / Ivy

The newest version!
package gherkin.ast;

public class Tag extends Node {
    private final String name;

    public Tag(Location location, String name) {
        super(location);
        this.name = name;
    }

    public String getName() {
        return name;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy