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

htmlcompiler.pojos.library.Attribute Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
package htmlcompiler.pojos.library;

public final class Attribute {
    public final String name;
    public final String value;

    private Attribute(final String name, final String value) {
        this.name = name;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy