* @return the bound {@link IBootstrapSettings}
*/
protected final IBootstrapSettings getBootstrapSettings(final Component component) {
Args.notNull(component, "component");
final IBootstrapSettings settings = Bootstrap.getSettings(component.getApplication());
if (settings == null) {
throw new WicketRuntimeException("No BootstrapSettings associated with this Application. Did you call Bootstrap.install()?");
}
return settings;