org.devgateway.eudevfin.ui.common.ApplicationCss.java Source code

Java tutorial

Introduction

Here is the source code for org.devgateway.eudevfin.ui.common.ApplicationCss.java

Source

/*******************************************************************************
 * 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;

/**
 * TODO: document
 *
 * @author miha
 * @version 1.0
 */
public class ApplicationCss extends CssResourceReference {

    public static final ApplicationCss INSTANCE = new ApplicationCss();

    private ApplicationCss() {
        super(ApplicationCss.class, "application.css");
    }
}