All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.agilecoders.wicket.settings.IBootstrapSettings Maven / Gradle / Ivy

package de.agilecoders.wicket.settings;

import org.apache.wicket.request.resource.ResourceReference;

/**
 * Settings interface for bootstrap settings.
 *
 * @author miha
 * @version 1.0
 */
public interface IBootstrapSettings {

    /**
     * @return the base twitter bootstrap css resource reference
     */
    ResourceReference getCssResourceReference();

    /**
     * @return the twitter bootstrap responsive css resource reference
     */
    ResourceReference getResponsiveCssResourceReference();

    /**
     * @return the base twitter bootstrap javascript resource reference
     */
    ResourceReference getJsResourceReference();

    /**
     * @return returns the jquery cdn url
     */
    String getJqueryUrl();

    void setJqueryUrl(final String url);

    boolean isMinified();

    void minify(final boolean minify);

    boolean useResponsiveCss();

    void setUseResponsiveCss(final boolean useResponsiveCss);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy