public JbsImageIcon() {
super(null);
}
public void setImage(byte[] image) throws IOException {
AwtImageReference imgRef = null;
if (image!=null) {
logger.debug("Showing logo - length: " + image.length);
Image img = ImageIO.read(new ByteArrayInputStream(image));
imgRef = new AwtImageReference(img);
}
this.setIcon(imgRef);
}