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

org.xmlet.htmlapi.Element 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;

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