jdk/src/java.desktop/share/classes/java/beans/BeanInfo.java
changeset 32865 f9cb6e427f9e
parent 25859 3317bb8137f4
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
   157     Image getIcon(int iconKind);
   157     Image getIcon(int iconKind);
   158 
   158 
   159     /**
   159     /**
   160      * Constant to indicate a 16 x 16 color icon.
   160      * Constant to indicate a 16 x 16 color icon.
   161      */
   161      */
   162     final static int ICON_COLOR_16x16 = 1;
   162     static final int ICON_COLOR_16x16 = 1;
   163 
   163 
   164     /**
   164     /**
   165      * Constant to indicate a 32 x 32 color icon.
   165      * Constant to indicate a 32 x 32 color icon.
   166      */
   166      */
   167     final static int ICON_COLOR_32x32 = 2;
   167     static final int ICON_COLOR_32x32 = 2;
   168 
   168 
   169     /**
   169     /**
   170      * Constant to indicate a 16 x 16 monochrome icon.
   170      * Constant to indicate a 16 x 16 monochrome icon.
   171      */
   171      */
   172     final static int ICON_MONO_16x16 = 3;
   172     static final int ICON_MONO_16x16 = 3;
   173 
   173 
   174     /**
   174     /**
   175      * Constant to indicate a 32 x 32 monochrome icon.
   175      * Constant to indicate a 32 x 32 monochrome icon.
   176      */
   176      */
   177     final static int ICON_MONO_32x32 = 4;
   177     static final int ICON_MONO_32x32 = 4;
   178 }
   178 }