List of usage examples for com.google.gwt.user.client.ui AbstractImagePrototype subclass-usage
From source file asquare.gwt.tk.client.ui.ImagePrototype.java
public class ImagePrototype extends AbstractImagePrototype { private final String m_url; public ImagePrototype(String url) { m_url = url; }
From source file org.eclipse.kapua.app.console.client.util.ScaledAbstractImagePrototype.java
public class ScaledAbstractImagePrototype extends AbstractImagePrototype { private AbstractImagePrototype m_aip; public ScaledAbstractImagePrototype(AbstractImagePrototype aip) { m_aip = aip; }
From source file org.eclipse.kura.web.client.util.ScaledAbstractImagePrototype.java
public class ScaledAbstractImagePrototype extends AbstractImagePrototype { private AbstractImagePrototype m_aip; public ScaledAbstractImagePrototype(AbstractImagePrototype aip) { m_aip = aip; }
From source file org.vectomatic.svg.edit.client.utils.SimpleImagePrototype.java
/** * AbstractImagePrototype subclass to act as an adapter * for data url images. * @author laaglu */ public class SimpleImagePrototype extends AbstractImagePrototype {