org.nasdanika.html.bootstrap.impl.ButtonToolbarImpl 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.impl;
import org.nasdanika.html.bootstrap.BootstrapFactory;
import org.nasdanika.html.bootstrap.ButtonToolbar;
public class ButtonToolbarImpl extends DivWrappingBootstrapElementImpl implements ButtonToolbar {
public ButtonToolbarImpl(BootstrapFactory factory) {
super(factory);
htmlElement.addClass("btn-toolbar").attribute("role", "toolbar");
}
@Override
public ButtonToolbar add(Object content) {
htmlElement.content(content);
return this;
}
}