Package weka.gui.beans
Class ImageEvent
- java.lang.Object
-
- java.util.EventObject
-
- weka.gui.beans.ImageEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class ImageEvent extends java.util.EventObjectEvent that encapsulates an Image- Version:
- $Revision: 10882 $
- Author:
- Mark Hall (mhall{[at]}pentaho{[dot]}com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ImageEvent(java.lang.Object source, java.awt.image.BufferedImage image)Construct a new ImageEventImageEvent(java.lang.Object source, java.awt.image.BufferedImage image, java.lang.String imageName)Construct an ImageEvent
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.image.BufferedImagegetImage()Get the encapsulated imagejava.lang.StringgetImageName()Get the name of the image
-
-
-
Constructor Detail
-
ImageEvent
public ImageEvent(java.lang.Object source, java.awt.image.BufferedImage image)Construct a new ImageEvent- Parameters:
source- the source of this eventimage- the image to encapsulate
-
ImageEvent
public ImageEvent(java.lang.Object source, java.awt.image.BufferedImage image, java.lang.String imageName)Construct an ImageEvent- Parameters:
source- the source of this eventimage- the image to encapsulateimageName- the name of the image
-
-