List of usage examples for com.google.gwt.resources.client ImageResource interface-usage
From source file com.ponysdk.core.terminal.ui.PImageResource.java
class PImageResource implements ImageResource { private final String uri; private final int width;
From source file com.ponysdk.ui.terminal.ui.PImageResource.java
public class PImageResource implements ImageResource { private final String uri; private final int width;
From source file org.activityinfo.legacy.shared.reports.model.MapIcon.java
/**
* A generic bitmap icon that can be used on the client or server side, in tiled
* maps as well as SVG maps.
*
* @author Alex Bertram
*/
From source file org.bonitasoft.console.client.mvp.EmptyImageResource.java
/** * @author Vincent Elcrin */ public class EmptyImageResource implements ImageResource { @Override
From source file org.drools.guvnor.client.resources.RuleFormatImageResource.java
public class RuleFormatImageResource implements ImageResource, Comparable<RuleFormatImageResource> { private final String format; private final ImageResource imageResource; public RuleFormatImageResource(String format, ImageResource imageResource) {
From source file org.onebusaway.presentation.impl.resources.DataResourceImpl.java
public class DataResourceImpl extends ResourcePrototypeImpl implements ImageResource, ResourceWithUrl, LocalResource { private String _url; public DataResourceImpl(ClientBundleContext context, ClientBundleImpl parentBundle, String name, URL localUrl) {
From source file org.onebusaway.presentation.impl.resources.ImageResourceImpl.java
public class ImageResourceImpl extends ResourcePrototypeImpl implements ImageResource, ResourceWithUrl, LocalResource { private String _url; public ImageResourceImpl(ClientBundleContext context, ClientBundleImpl parentBundle, String name,
From source file org.rstudio.core.client.resources.ImageResource2x.java
public class ImageResource2x implements ImageResource { public ImageResource2x(ImageResource ref2x) { this(null, ref2x); } public ImageResource2x(ImageResource ref, ImageResource ref2x) {
From source file org.rstudio.core.client.resources.ImageResourceUrl.java
public class ImageResourceUrl implements ImageResource { public ImageResourceUrl(SafeUri url, int width, int height) { url_ = url; width_ = width; height_ = height; }