cc.kune.common.client.resources.CommonResources.java Source code

Java tutorial

Introduction

Here is the source code for cc.kune.common.client.resources.CommonResources.java

Source

/*
 *
 * Copyright (C) 2007-2015 Licensed to the Comunes Association (CA) under
 * one or more contributor license agreements (see COPYRIGHT for details).
 * The CA licenses this file to you under the GNU Affero General Public
 * License version 3, (the "License"); you may not use this file except in
 * compliance with the License. This file is part of kune.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */
package cc.kune.common.client.resources;

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

public interface CommonResources extends ClientBundle {

    public interface CommonStyle extends CssResource {

    }

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

    @Source("alert.png")
    ImageResource alert();

    @Source("arrowdownsitebar-small.gif")
    ImageResource arrowdownsitebarSmall();

    @Source("chain-close-black.png")
    ImageResource chainCloseBlack();

    @Source("chain-closed-grey.png")
    ImageResource chainClosedGrey();

    @Source("chain-close-white.png")
    ImageResource chainCloseWhite();

    @Source("chain-open-black.png")
    ImageResource chainOpenBlack();

    @Source("chain-open-grey.png")
    ImageResource chainOpenGrey();

    @Source("chain-open-white.png")
    ImageResource chainOpenWhite();

    @Source("checked.png")
    ImageResource checked();

    @Source("circle-spinner.gif")
    ImageResource circleSpinner();

    @Source("clear.png")
    ImageResource clear();

    @Source("clear16.png")
    ImageResource clear16();

    @Source("common-resources.css")
    CommonStyle commonStyle();

    @Source("edit-black.png")
    ImageResource editBlack();

    @Source("edit-gray_dark.png")
    ImageResource editGrayDark();

    @Source("edit-white.png")
    ImageResource editWhite();

    @Source("error.png")
    ImageResource error();

    @Source("important.png")
    ImageResource important();

    @Source("important-32.png")
    ImageResource important32();

    @Source("info.png")
    ImageResource info();

    @Source("kune-anim.gif")
    ImageResource kuneAnim();

    @Source("kune-anim-g.gif")
    ImageResource kuneAnimG();

    @Source("kune-close.png")
    ImageResource kuneClose();

    @Source("kune-close-grey.png")
    ImageResource kuneCloseGrey();

    @Source("kune-close-greylight.png")
    ImageResource kuneCloseGreylight();

    @Source("fonts/kune/iconsfont.ttf")
    DataResource kuneFontResource();

    @Source("location-black.png")
    ImageResource locationBlack();

    @Source("location-grey.png")
    ImageResource locationGrey();

    @Source("location-white.png")
    ImageResource locationWhite();

    @Source("picture-black.png")
    ImageResource pictureBlack();

    @Source("picture-grey.png")
    ImageResource pictureGrey();

    @Source("picture-white.png")
    ImageResource pictureWhite();

    @Source("pref-black.png")
    ImageResource prefBlack();

    @Source("pref-grey.png")
    ImageResource prefGrey();

    @Source("pref-white.png")
    ImageResource prefWhite();

    @Source("radiochecked.png")
    ImageResource radioChecked();

    @Source("radiounchecked.png")
    ImageResource radioUnChecked();

    @Source("cross.png")
    ImageResource redCross();

    @Source("trash-black.png")
    ImageResource trashBlack();

    @Source("trash-white.png")
    ImageResource trashWhite();

    @Source("unchecked.png")
    ImageResource unChecked();

    @Source("world-16.png")
    ImageResource world16();

    @Source("world-deny-16.png")
    ImageResource worldDeny16();
}