home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 July / Chip_1998-07_cd.bin / zkuste / JBuilder / BDK / Win / bdk_sep97.exe / _SETUP.1 / JugglerBeanInfo.java < prev    next >
Encoding:
Java Source  |  1997-09-10  |  378 b   |  21 lines

  1.  
  2. /** 
  3.  * The only thing we define in the Juggler BeanInfo is a GIF icon.
  4.  */
  5.  
  6. package sunw.demo.juggler;
  7.  
  8. import java.beans.*;
  9.  
  10. public class JugglerBeanInfo extends SimpleBeanInfo {
  11.  
  12.     public java.awt.Image getIcon(int iconKind) {
  13.     if (iconKind == BeanInfo.ICON_COLOR_16x16) {
  14.         java.awt.Image img = loadImage("JugglerIcon.gif");
  15.         return img;
  16.     }
  17.     return null;
  18.     }
  19.  
  20. }
  21.