htmlcompiler.pojos.library.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlcompiler Show documentation
Show all versions of htmlcompiler Show documentation
An HTML compiler, with maven plugin
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;
}
}