com.levigo.jadice.web.docmanager.client.RepositoryBrowserIcons.java Source code

Java tutorial

Introduction

Here is the source code for com.levigo.jadice.web.docmanager.client.RepositoryBrowserIcons.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.docmanager.client;

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

public interface RepositoryBrowserIcons extends ClientBundle {
    public static RepositoryBrowserIcons INSTANCE = GWT.create(RepositoryBrowserIcons.class);

    @Source("docManager_icon_16x16_transp.png")
    ImageResource docManagerLogoSmall();

    @Source("docManager_icon_32x32_transp.png")
    ImageResource docManagerLogoLarge();

    @Source("TreeIcon_document_16x16.png")
    ImageResource treeIconDocument();

}