com.asayama.gwt.angular.site.examples.client.ImageResourceExampleController 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.asayama.gwt.angular.client.AbstractController;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ImageResource;
public class ImageResourceExampleController extends AbstractController {
private static final ImageResources IMAGES = GWT.create(ImageResources.class);
public static final ImageResource STREET = IMAGES.street();
public static final ImageResource WTC = IMAGES.wtc();
public static final ImageResource BOAT = IMAGES.boat();
public static final ImageResource PEOPLE = IMAGES.people();
public static final String NOW = String.valueOf(System.currentTimeMillis());
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy