According to the "good issue resolution guideline" I am forwarding
this to the dev. list.
---------- Forwarded message ----------
From: Oleg Khaschansky (JIRA) <[EMAIL PROTECTED]>
Date: Oct 6, 2006 8:58 PM
Subject: [jira] Updated: (HARMONY-1763) [classlib][beans] method
java.beans.PropertyDescriptor.equals(Object) throws ClassCastException
To: [EMAIL PROTECTED]
[ http://issues.apache.org/jira/browse/HARMONY-1763?page=all ]
Oleg Khaschansky updated HARMONY-1763:
--------------------------------------
Attachment: harmony-1763.patch
Patch for this issue rev. 453254.
[classlib][beans] method java.beans.PropertyDescriptor.equals(Object) throws
ClassCastException
-----------------------------------------------------------------------------------------------
Key: HARMONY-1763
URL: http://issues.apache.org/jira/browse/HARMONY-1763
Project: Harmony
Issue Type: Bug
Components: Classlib
Reporter: Oleg Khaschansky
Priority: Minor
Attachments: harmony-1763-test.patch, harmony-1763.patch
The test below throws ClassCastException on Harmony but passes on RI.
I will provide a patch for this issue and a unit test.
----------------------------------------------------------------
import java.beans.*;
import java.lang.reflect.*;
public class Test {
public static void main(String[] args) {
PropertyDescriptor toRet = null;
try {
toRet = new PropertyDescriptor("p", Bean.class );
toRet.setBound( true );
} catch (IntrospectionException e) {
e.printStackTrace();
}
Method m = null;
try {
m = HelpClass.class.getDeclaredMethod("f_static",
(Class[])null);
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
toRet.equals(m);
System.out.println("PASSED");
}
}
class Bean {
public void setP(int i) {}
public int getP() {return 0;}
}
class HelpClass {
public HelpClass () {}
public static void f_static () {}
}
----------------------------------------------------------------
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the
administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]