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

org.xmlet.htmlapi.Col 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;

import java.math.BigInteger;

public class Col extends AbstractElement, Z> implements CommonAttributeGroup, Z>, TextGroup, Z> {
   public Col() {
      super("col");
   }

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

   public Col(Z parent) {
      super(parent, "col");
   }

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

   public Col self() {
      return this;
   }

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

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

   public Col attrSpan(BigInteger attrSpan) {
      return (Col)this.addAttr(new AttrSpanBigInteger(attrSpan));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy