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

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

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

   public H5(Z parent) {
      super(parent, "h5");
   }

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

   public H5 self() {
      return this;
   }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy