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

org.webjars.WebJarPath Maven / Gradle / Ivy

There is a newer version: 0.52
Show newest version
package org.webjars;

public class WebJarPath {

    private final String prefix;

    private final boolean comma;

    public WebJarPath(String prefix, boolean comma) {
        this.prefix = prefix;
        this.comma = comma;
    }

    public String getPrefix() {
        return prefix;
    }

    public boolean isComma() {
        return comma;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy