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

org.xmlet.htmlapi.TableChoice0 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 interface TableChoice0, Z extends Element> extends TextGroup {
   default Caption caption() {
      return (Caption)this.addChild(new Caption(this.self()));
   }

   default Colgroup colgroup() {
      return (Colgroup)this.addChild(new Colgroup(this.self()));
   }

   default Thead thead() {
      return (Thead)this.addChild(new Thead(this.self()));
   }

   default Tfoot tfoot() {
      return (Tfoot)this.addChild(new Tfoot(this.self()));
   }

   default Tbody tbody() {
      return (Tbody)this.addChild(new Tbody(this.self()));
   }

   default Tr tr() {
      return (Tr)this.addChild(new Tr(this.self()));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy