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

de.agilecoders.wicket.markup.html.themes.metro.MetroCssReference Maven / Gradle / Ivy

package de.agilecoders.wicket.markup.html.themes.metro;

import de.agilecoders.wicket.markup.html.themes.bootstrap.BootstrapCssReference;

/**
 * A windows 8 inspired theme
 *
 * @author miha
 * @version 1.0
 */
public class MetroCssReference extends BootstrapCssReference {
    private static final long serialVersionUID = 1L;

    /**
     * @return singleton instance of {@link MetroCssReference}
     */
    public static MetroCssReference instance() {
        return Holder.INSTANCE;
    }

    /**
     * Singleton instance of this reference
     */
    private static final class Holder {
        private static final MetroCssReference INSTANCE = new MetroCssReference();
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy