org.xmlet.htmlapi.Param 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 Param extends AbstractElement, Z> implements CoreAttributeGroup, Z>, TextGroup, Z> {
public Param() {
super("param");
}
public Param(String name) {
super(name);
}
public Param(Z parent) {
super(parent, "param");
}
public Param(Z parent, String name) {
super(parent, name);
}
public Param self() {
return this;
}
public void accept(ElementVisitor visitor) {
visitor.visit(this);
}
public Param cloneElem() {
return (Param)this.clone(new Param());
}
public Param attrName(java.lang.Object attrName) {
return (Param)this.addAttr(new AttrNameObject(attrName));
}
public Param attrValue(java.lang.Object attrValue) {
return (Param)this.addAttr(new AttrValueObject(attrValue));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy