Java tutorial
/** * 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.client.util; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.ImageResource; interface ScrollPaneIcons extends ClientBundle { @Source("com/levigo/jadice/web/icons/up.png") public ImageResource up(); @Source("com/levigo/jadice/web/icons/up-disabled.png") public ImageResource upDisabled(); @Source("com/levigo/jadice/web/icons/down.png") public ImageResource down(); @Source("com/levigo/jadice/web/icons/down-disabled.png") public ImageResource downDisabled(); @Source("com/levigo/jadice/web/icons/left.png") public ImageResource left(); @Source("com/levigo/jadice/web/icons/left-disabled.png") public ImageResource leftDisabled(); @Source("com/levigo/jadice/web/icons/right.png") public ImageResource right(); @Source("com/levigo/jadice/web/icons/right-disabled.png") public ImageResource rightDisabled(); }