com.objetdirect.gwt.umlapi.client.resources.Resources.java Source code

Java tutorial

Introduction

Here is the source code for com.objetdirect.gwt.umlapi.client.resources.Resources.java

Source

/*
 * This file is part of the Gwt-Uml project and was written by Raphal Brugier <raphael dot brugier at gmail dot com > for Objet Direct
 * <http://wwww.objetdirect.com>
 * 
 * Copyright  2010 Objet Direct
 * 
 * Gwt-Uml is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later version.
 * 
 * Gwt-Uml is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License along with Gwt-Generator. If not, see <http://www.gnu.org/licenses/>.
 */
package com.objetdirect.gwt.umlapi.client.resources;

import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.objetdirect.gwt.umlapi.client.resources.styles.IconStyles;

/**
 * Interface for all the resources in the gwt uml api.
 * 
 * @author Raphael Brugier (raphael-dot-brugier.at.gmail'dot'com)
 */
public interface Resources extends ClientBundle {
    public Resources INSTANCE = GWT.create(Resources.class);

    @Source("styles/IconStyles.css")
    IconStyles iconStyles();
}