All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.lib.portal.url.ImagePlaceholderHandler Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.lib.portal.url;

import com.enonic.xp.image.ImageHelper;

public final class ImagePlaceholderHandler
{
    private Integer width;

    private Integer height;

    public String createImagePlaceholder()
    {
        width = width != null ? width : 0;
        height = height != null ? height : 0;
        return ImageHelper.createImagePlaceholder( width, height );
    }

    public void setWidth( final Integer width )
    {
        this.width = width;
    }

    public void setHeight( final Integer height )
    {
        this.height = height;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy