use of de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchThemeProvider in project estatio by estatio.
the class EstatioApplication method init.
@Override
protected void init() {
super.init();
IBootstrapSettings settings = Bootstrap.getSettings();
settings.setThemeProvider(new BootswatchThemeProvider(BootswatchTheme.Sandstone));
}
use of de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchThemeProvider in project java-design-patterns by iluwatar.
the class SimpleApplication method init.
@Override
protected void init() {
super.init();
IBootstrapSettings settings = Bootstrap.getSettings();
settings.setThemeProvider(new BootswatchThemeProvider(BootswatchTheme.Flatly));
}
Aggregations