org.xmlet.htmlapi.Keygen 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 Keygen extends AbstractElement, Z> implements CommonAttributeGroup, Z>, TextGroup, Z> {
public Keygen() {
super("keygen");
}
public Keygen(String name) {
super(name);
}
public Keygen(Z parent) {
super(parent, "keygen");
}
public Keygen(Z parent, String name) {
super(parent, name);
}
public Keygen self() {
return this;
}
public void accept(ElementVisitor visitor) {
visitor.visit(this);
}
public Keygen cloneElem() {
return (Keygen)this.clone(new Keygen());
}
public Keygen attrAutofocus(EnumAutofocusKeygen attrAutofocus) {
return (Keygen)this.addAttr(new AttrAutofocusEnumAutofocusKeygen(attrAutofocus));
}
public Keygen attrChallenge(java.lang.Object attrChallenge) {
return (Keygen)this.addAttr(new AttrChallengeObject(attrChallenge));
}
public Keygen attrDisabled(EnumDisabledKeygen attrDisabled) {
return (Keygen)this.addAttr(new AttrDisabledEnumDisabledKeygen(attrDisabled));
}
public Keygen attrForm(java.lang.Object attrForm) {
return (Keygen)this.addAttr(new AttrFormObject(attrForm));
}
public Keygen attrKeytype(EnumKeytypeKeygen attrKeytype) {
return (Keygen)this.addAttr(new AttrKeytypeEnumKeytypeKeygen(attrKeytype));
}
public Keygen attrName(java.lang.Object attrName) {
return (Keygen)this.addAttr(new AttrNameObject(attrName));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy