org.xmlet.htmlapi.Element 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;
import java.util.List;
import java.util.function.BiConsumer;
import java.util.function.Predicate;
import java.util.stream.Stream;
public interface Element {
R addChild(R var1);
T addAttr(Attribute var1);
T self();
void accept(ElementVisitor var1);
String getName();
List getChildren();
List getAttributes();
Stream find(Predicate var1);
Z __();
T binder(BiConsumer var1);
boolean isBound();
Element cloneElem();
Element bindTo(java.lang.Object var1);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy