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

org.xmlet.htmlapi.Label 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 Label extends AbstractElement, Z> implements CommonAttributeGroup, Z>, PhrasingContentChoice, Z> {
   public Label() {
      super("label");
   }

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

   public Label(Z parent) {
      super(parent, "label");
   }

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

   public Label self() {
      return this;
   }

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

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

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

   public Label attrFor(java.lang.Object attrFor) {
      return (Label)this.addAttr(new AttrForObject(attrFor));
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy