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

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

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

   public Map(Z parent) {
      super(parent, "map");
   }

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

   public Map self() {
      return this;
   }

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

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

   public Map attrName(java.lang.Object attrName) {
      return (Map)this.addAttr(new AttrNameObject(attrName));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy