com.asayama.gwt.angular.site.examples.client.ImageResources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ImageResource Show documentation
Show all versions of ImageResource Show documentation
An example GWT Angular module demonstrating the use of GWT's ImageResource.
package com.asayama.gwt.angular.site.examples.client;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ImageResource;
public interface ImageResources extends ClientBundle {
@Source("street.jpg")
ImageResource street();
@Source("wtc.jpg")
ImageResource wtc();
@Source("boat.jpg")
ImageResource boat();
@Source("people.jpg")
ImageResource people();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy