org.xmlet.htmlapi.Meter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlApi Show documentation
Show all versions of htmlApi Show documentation
Uses XsdAsm to generate a fluent API that allows the creation of HTML5 documents.
The newest version!
package org.xmlet.htmlapi;
public class Meter extends AbstractElement, Z> implements CommonAttributeGroup, Z>, PhrasingContentChoice, Z> {
public Meter() {
super("meter");
}
public Meter(String name) {
super(name);
}
public Meter(Z parent) {
super(parent, "meter");
}
public Meter(Z parent, String name) {
super(parent, name);
}
public Meter self() {
return this;
}
public void accept(ElementVisitor visitor) {
visitor.visit(this);
}
public Meter cloneElem() {
return (Meter)this.clone(new Meter());
}
public Meter attrValue(Float attrValue) {
return (Meter)this.addAttr(new AttrValueFloat(attrValue));
}
public Meter attrMin(Float attrMin) {
return (Meter)this.addAttr(new AttrMinFloat(attrMin));
}
public Meter attrMax(Float attrMax) {
return (Meter)this.addAttr(new AttrMaxFloat(attrMax));
}
public Meter attrLow(Float attrLow) {
return (Meter)this.addAttr(new AttrLowFloat(attrLow));
}
public Meter attrHigh(Float attrHigh) {
return (Meter)this.addAttr(new AttrHighFloat(attrHigh));
}
public Meter attrOptimum(Float attrOptimum) {
return (Meter)this.addAttr(new AttrOptimumFloat(attrOptimum));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy