Java tutorial
/******************************************************************************* * 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.web.client.widgets.chooser.person; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.ImageResource; public interface PeopleResources extends ClientBundle { @Source("resources/person.png") public ImageResource personIcon(); @Source("resources/clear.gif") public ImageResource removeIcon(); @Source("resources/person-new.png") public ImageResource personNewIcon(); @Source("resources/person-self.png") public ImageResource personSelfIcon(); @Source("resources/person-self-new.png") public ImageResource personSelfNewIcon(); @Source("resources/person-self-origin.png") public ImageResource personSelfOriginIcon(); @Source("resources/person-origin.png") public ImageResource personOriginIcon(); }