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

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

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

import de.agilecoders.wicket.markup.html.themes.bootstrap.BootstrapCssReference;
import org.apache.wicket.request.resource.CssResourceReference;
import org.apache.wicket.request.resource.ResourceReference;

/**
 * The {@link CssResourceReference} for the prettify component.
 *
 * @author miha
 * @version 1.0
 */
public class BootstrapPrettifyCssReference extends CssResourceReference {
    private static final long serialVersionUID = 1L;

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

    /**
     * Private constructor.
     */
    private BootstrapPrettifyCssReference() {
        super(BootstrapCssReference.class, "css/prettify.css");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy