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

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

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

   public B(Z parent) {
      super(parent, "b");
   }

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

   public B self() {
      return this;
   }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy