org.xmlet.htmlapi.Base 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 Base extends AbstractElement , Z> implements CommonAttributeGroup , Z>, TextGroup , Z> {
public Base() {
super("base");
}
public Base(String name) {
super(name);
}
public Base(Z parent) {
super(parent, "base");
}
public Base(Z parent, String name) {
super(parent, name);
}
public Base self() {
return this;
}
public void accept(ElementVisitor visitor) {
visitor.visit(this);
}
public Base cloneElem() {
return (Base)this.clone(new Base());
}
public Base attrHref(String attrHref) {
return (Base)this.addAttr(new AttrHrefString(attrHref));
}
public Base attrTarget(EnumTargetBrowsingContext attrTarget) {
return (Base)this.addAttr(new AttrTargetEnumTargetBrowsingContext(attrTarget));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy