aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/beans/BeanInfo.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2002-11-07 08:45:19 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2002-11-07 08:45:19 +0000
commit3bb5c7a16975806acf62a1d371c54b4402f86508 (patch)
treecddd30213d89bcf18b520a827dc2080baa5af0b0 /libjava/java/beans/BeanInfo.java
parentd7899d8a4064eeb0640aa97f35595582f4cb6153 (diff)
downloadgcc-3bb5c7a16975806acf62a1d371c54b4402f86508.zip
gcc-3bb5c7a16975806acf62a1d371c54b4402f86508.tar.gz
gcc-3bb5c7a16975806acf62a1d371c54b4402f86508.tar.bz2
ICC_Profile.java: Added missing constants.
2002-11-07 Michael Koch <konqueror@gmx.de> * java/awt/color/ICC_Profile.java: Added missing constants. * java/awt/color/ICC_ColorSpace.java (getMinValue): Added dummy implementation. (getMaxValue): Added dummy implementation. * java/awt/datatransfer/DataFlavor.java (imageFlavor): Added. (isMimeTypeEqual): Must be final. (getDefaultRepresentationClass): Must be non-static. (getDefaultRepresentationClassAsString): Must be non-static. * java/awt/dnd/DragSourceContext.java (dragExit): Corrected argument. (dragDropEnd): Corrected argument. * java/awt/dnd/DragSourceListener.java.java (dragExit): Corrected argument. (dragDropEnd): Corrected argument. * java/awt/font/TextHitInfo.java (toString): Added stubbed implementation. * java/awt/geom/PathIterator.java: The constants must be static. * java/awt/image/VolatileImage.java (IMAGE_INCOMPATIBLE): Fixed typo. * java/awt/image/renderable/RenderableImage.java (HINTS_OBSERVED): Must be static. * java/beans/BeanInfo.java: Constants must be final. From-SVN: r58885
Diffstat (limited to 'libjava/java/beans/BeanInfo.java')
-rw-r--r--libjava/java/beans/BeanInfo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/beans/BeanInfo.java b/libjava/java/beans/BeanInfo.java
index ef98914..dcfd783 100644
--- a/libjava/java/beans/BeanInfo.java
+++ b/libjava/java/beans/BeanInfo.java
@@ -74,13 +74,13 @@ package java.beans;
public interface BeanInfo {
/** Use this as a parameter for the getIcon() command to retrieve a certain type of icon. **/
- public static int ICON_COLOR_16x16 = 1;
+ public static final int ICON_COLOR_16x16 = 1;
/** Use this as a parameter for the getIcon() command to retrieve a certain type of icon. **/
- public static int ICON_COLOR_32x32 = 2;
+ public static final int ICON_COLOR_32x32 = 2;
/** Use this as a parameter for the getIcon() command to retrieve a certain type of icon. **/
- public static int ICON_MONO_16x16 = 3;
+ public static final int ICON_MONO_16x16 = 3;
/** Use this as a parameter for the getIcon() command to retrieve a certain type of icon. **/
- public static int ICON_MONO_32x32 = 4;
+ public static final int ICON_MONO_32x32 = 4;
/** Get the general description of this Bean type.
** @return the BeanDescriptor for the Bean, or null if