cz.datalite.zk.components.image.DLImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ZKComponents Show documentation
Show all versions of ZKComponents Show documentation
Other imporvements of basic ZK components - please check the documentation for each overriden component.
The newest version!
package cz.datalite.zk.components.image;
import org.zkoss.zul.Image;
/**
* ZK Image extensions.
*
* List of extensions:
*
* - Assign arbitrary value to an image (use in list to hand over selected record)
*
*
* @author Jiri Bubnik
*/
public class DLImage extends Image {
/**
* Arbitrary value associated to the image.
*/
private Object value;
/**
* Get arbitrary value associated to the image.
*/
public Object getValue() {
return value;
}
/**
* Set arbitrary value associated to the image.
*/
public void setValue(Object value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy