com.tasktop.c2c.server.common.profile.web.client.AppResources.java Source code

Java tutorial

Introduction

Here is the source code for com.tasktop.c2c.server.common.profile.web.client.AppResources.java

Source

/*******************************************************************************
 * Copyright (c) 2010, 2012 Tasktop Technologies
 * Copyright (c) 2010, 2011 SpringSource, a division of VMware
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Tasktop Technologies - initial API and implementation
 ******************************************************************************/
package com.tasktop.c2c.server.common.profile.web.client;

import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ImageResource;

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public interface AppResources extends ClientBundle {

    @Source("resources/throbber.gif")
    ImageResource throbber();

    @Source("resources/app.css")
    AppCssResource appCss();

    @Source("resources/c2c-logo-white.png")
    ImageResource logo();

}