org.nasdanika.html.bootstrap.ListGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap Show documentation
Show all versions of bootstrap Show documentation
Classes for generating Bootstrap UI.
package org.nasdanika.html.bootstrap;
import org.nasdanika.html.Tag;
/**
* Interface for building List groups with UL and LI.
* @author Pavel Vlasov
*
*/
public interface ListGroup extends BootstrapElement {
Tag item(boolean active, boolean disabled, Color color, Object... content);
boolean isEmpty();
}