com.levigo.jadice.web.demo.desktop.client.Icons.java Source code

Java tutorial

Introduction

Here is the source code for com.levigo.jadice.web.demo.desktop.client.Icons.java

Source

/**
 * Copyright (c) 2007-2010, levigo holding gmbh
 *
 * Unless you have a written license agreement with the copyright holder,
 * the following license terms apply:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.levigo.jadice.web.demo.desktop.client;

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

public interface Icons extends ClientBundle {

    public static final Icons INSTANCE = GWT.create(Icons.class);

    @Source("application_xp_terminal.png")
    ImageResource projectSiteLogo();

    @Source("levigo_icon_16x16_transp.png")
    ImageResource levigoLogo();

    @Source("jwt_cube_16x16_transp.png")
    ImageResource jwtLogoSmall();
    //   @Resource("com/levigo/jadice/web/demo/websimple/icons/icon_plus_16x16.png")
    //   AbstractImagePrototype toggleExpand();
    //   
    //   @Resource("com/levigo/jadice/web/demo/websimple/icons/icon_minus_16x16.png")
    //   AbstractImagePrototype toggleCollapse();

}