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

de.klosebrothers.specparser.gauge.datastructure.SpecificationHeading Maven / Gradle / Ivy

Go to download

This is a Library for parsing a Gauge Specification into a appropriate datastructure

There is a newer version: 1.2
Show newest version
package de.klosebrothers.specparser.gauge.datastructure;

import lombok.Getter;
import lombok.Setter;

public class SpecificationHeading extends Component {

    @Getter @Setter
    private String heading;

    public SpecificationHeading(String heading) {
        this.heading = heading;
    }

    @Override
    public String toMD() {
        return "# " + heading + "\n";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy