org.nasdanika.html.NamedItemsContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of html Show documentation
Show all versions of html Show documentation
Classes for generating HTML UI.
package org.nasdanika.html;
import java.util.Map;
import java.util.Map.Entry;
/**
* A container of named items, e.g. sections with headers or Bootstrap tabs/pills.
* @author Pavel Vlasov
*
* @param
*/
public interface NamedItemsContainer {
void item(Object name, Object content);
boolean isEmpty();
default void load(Iterable> items) {
for (Entry
© 2015 - 2025 Weber Informatics LLC | Privacy Policy