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

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

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

   public Html(Z parent) {
      super(parent, "html");
   }

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

   public Html self() {
      return this;
   }

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

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

   public Html attrManifest(String attrManifest) {
      return (Html)this.addAttr(new AttrManifestString(attrManifest));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy