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

de.neuland.jade4j.parser.FileNameBuilder Maven / Gradle / Ivy

package de.neuland.jade4j.parser;

public class FileNameBuilder {

    private String path;

    public FileNameBuilder(String path) {
        this.path = path;
    }

    public String build() {
        return path.endsWith(".jade") ? path : path + ".jade";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy