org.xmlet.htmlapi.Table Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlApi Show documentation
Show all versions of htmlApi Show documentation
Uses XsdAsm to generate a fluent API that allows the creation of HTML5 documents.
The newest version!
package org.xmlet.htmlapi;
public class Table extends AbstractElement, Z> implements CommonAttributeGroup, Z>, TableChoice0, Z> {
public Table() {
super("table");
}
public Table(String name) {
super(name);
}
public Table(Z parent) {
super(parent, "table");
}
public Table(Z parent, String name) {
super(parent, name);
}
public Table self() {
return this;
}
public void accept(ElementVisitor visitor) {
visitor.visit(this);
}
public Table cloneElem() {
return (Table)this.clone(new Table());
}
public Table attrSummary(java.lang.Object attrSummary) {
return (Table)this.addAttr(new AttrSummaryObject(attrSummary));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy