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

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

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

   public Output(Z parent) {
      super(parent, "output");
   }

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

   public Output self() {
      return this;
   }

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

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

   public Output attrFor(java.lang.Object attrFor) {
      return (Output)this.addAttr(new AttrForObject(attrFor));
   }

   public Output attrForm(java.lang.Object attrForm) {
      return (Output)this.addAttr(new AttrFormObject(attrForm));
   }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy