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

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

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

   public Legend(Z parent) {
      super(parent, "legend");
   }

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

   public Legend self() {
      return this;
   }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy