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

de.agilecoders.wicket.markup.html.references.BootstrapDatepickerReference Maven / Gradle / Ivy

package de.agilecoders.wicket.markup.html.references;

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

/**
 * DatePicker css resource reference
 *
 * @author miha
 */
public class BootstrapDatepickerReference extends CssResourceReference {
    private static final long serialVersionUID = 1L;

    /**
     * Singleton instance of this reference
     */
    public static final ResourceReference INSTANCE = new BootstrapDatepickerReference();

    /**
     * Private constructor.
     */
    private BootstrapDatepickerReference() {
        super(BootstrapDatepickerReference.class, "css/datepicker.css");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy