org.nasdanika.html.bootstrap.Container 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;
/**
* Bootstrap container.
* @author Pavel Vlasov
*
*/
public interface Container extends BootstrapElement {
interface Row extends BootstrapElement {
interface Col extends BootstrapElement, org.nasdanika.html.Container {
Col width(Breakpoint breakpoint, Size width);
}
Col col(Object... content);
}
Row row();
}