Java tutorial
/******************************************************************************* * Copyright (c) 2014 Development Gateway. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html *******************************************************************************/ package org.devgateway.eudevfin.ui.common; import org.apache.wicket.request.resource.CssResourceReference; /** * A simple stylesheet to fix some styles for the demo page. * * @author miha * @version 1.0 */ public class FixBootstrapStylesCssResourceReference extends CssResourceReference { public static final FixBootstrapStylesCssResourceReference INSTANCE = new FixBootstrapStylesCssResourceReference(); /** * Construct. */ private FixBootstrapStylesCssResourceReference() { super(FixBootstrapStylesCssResourceReference.class, "fix.css"); } }