Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6707231

Wrong read Method returned for boolen properties

XMLWordPrintable

    • x86
    • windows_xp

        FULL PRODUCT VERSION :
        java version "1.6.0_03"
        Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
        Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode, sharing)

        ADDITIONAL OS VERSION INFORMATION :
        Microsoft Windows XP [Version 5.1.2600]

        A DESCRIPTION OF THE PROBLEM :
        Class A defines a boolean property and a read method.
        If the read method for the boolean property is overwritten in a subclass, the PropertyDescriptor property for the subclass contains the readMethod defined in the superclasss.

        STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
        Run attached Testcase

        EXPECTED VERSUS ACTUAL BEHAVIOR :
        EXPECTED -
        Introspecting class: class TestPropertyDescriptor$Test2ExtendsTest

        The read method for property "bool" is from class TestPropertyDescriptor$Test2ExtendsTest

        The write method for property "bool" is from class TestPropertyDescriptor$Test2ExtendsTest
        ACTUAL -
        Introspecting class: class TestPropertyDescriptor$Test2ExtendsTest

        The read method for property "bool" is from class TestPropertyDescriptor$Test

        The write method for property "bool" is from class TestPropertyDescriptor$Test2ExtendsTest

        REPRODUCIBILITY :
        This bug can be reproduced always.

        ---------- BEGIN SOURCE ----------
        import java.beans.*;
        import java.lang.reflect.Method;


        public class TestPropertyDescriptor
        {
           public static void main(String[] args) throws Exception
           {
              test(new Test2ExtendsTest());
           }

           private static class Test
           {
              public boolean isBool()
              {
                 return true;
              }

              public void setBool(boolean value)
              {
              }
           }

           private static class Test2ExtendsTest extends Test
           {
              public boolean isBool()
              {
                 return false;
              }

              public void setBool(boolean value)
              {
              }
           }

           private static void test(Object bean)
           {
              try
              {
                 System.out.println("Introspecting class: " + bean.getClass());
                 BeanInfo beanInfo = Introspector.getBeanInfo(bean.getClass());
                 PropertyDescriptor ps = beanInfo.getPropertyDescriptors()[0];
                 Method readMethod = ps.getReadMethod();
                 Method writeMethod = ps.getWriteMethod();
                 System.out.println("The read method for property \"" + ps.getName() + "\" is from "+readMethod.getDeclaringClass());
                 System.out.println("The write method for property \"" + ps.getName() + "\" is from "+writeMethod.getDeclaringClass());
              }
              catch (IntrospectionException e)
              {
                 e.printStackTrace();
              }
           }
        }

        ---------- END SOURCE ----------

              malenkov Sergey Malenkov (Inactive)
              igor Igor Nekrestyanov (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: