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

org.xmlet.htmlapi.Fieldset Maven / Gradle / Ivy

Go to download

Uses XsdAsm to generate a fluent API that allows the creation of HTML5 documents.

The newest version!
package org.xmlet.htmlapi;

public class Fieldset extends AbstractElement, Z> implements CommonAttributeGroup, Z>, FieldsetChoice0, Z> {
   public Fieldset() {
      super("fieldset");
   }

   public Fieldset(String name) {
      super(name);
   }

   public Fieldset(Z parent) {
      super(parent, "fieldset");
   }

   public Fieldset(Z parent, String name) {
      super(parent, name);
   }

   public Fieldset self() {
      return this;
   }

   public void accept(ElementVisitor visitor) {
      visitor.visit(this);
   }

   public Fieldset cloneElem() {
      return (Fieldset)this.clone(new Fieldset());
   }

   public Fieldset attrDisabled(java.lang.Object attrDisabled) {
      return (Fieldset)this.addAttr(new AttrDisabledObject(attrDisabled));
   }

   public Fieldset attrForm(java.lang.Object attrForm) {
      return (Fieldset)this.addAttr(new AttrFormObject(attrForm));
   }

   public Fieldset attrName(java.lang.Object attrName) {
      return (Fieldset)this.addAttr(new AttrNameObject(attrName));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy