view flys-client/src/main/java/de/intevation/flys/client/client/ui/ImgLink.java @ 1594:ddf43791244c

Removed superfluous imports. flys-client/trunk@3905 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 03 Feb 2012 15:04:12 +0000
parents 0d3d3860beb5
children 3c8ae5605a51
line wrap: on
line source
package de.intevation.flys.client.client.ui;

import com.smartgwt.client.types.Overflow;
import com.smartgwt.client.widgets.HTMLPane;


public class ImgLink extends HTMLPane {

    public ImgLink(String imgUrl, String href, int width, int height) {
        super();

        setContents("<a href='" + href + "'><img src='" + imgUrl + "'></a>");
        setWidth(width);
        setHeight(height);
        setOverflow(Overflow.VISIBLE);
    }
}

http://dive4elements.wald.intevation.org