You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vladimir Ivanov (JIRA)" <ji...@apache.org> on 2006/08/29 12:44:22 UTC

[jira] Created: (HARMONY-1336) [classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...)

[classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...)
--------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-1336
                 URL: http://issues.apache.org/jira/browse/HARMONY-1336
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Vladimir Ivanov


The method java.beans.PropertyChangeSupport().fireIndexedPropertyChange("", 24992, new UnresolvedAddressException(), null) throws IllegalArgumentException on Harmony and works silently on RI.

====================== test.java =========================
import java.nio.channels.UnresolvedAddressException;
import java.beans.PropertyChangeSupport;
import javax.swing.plaf.metal.MetalIconFactory;

public class test {
    public static void main(String args[]) {
        new PropertyChangeSupport(new MetalIconFactory.PaletteCloseIcon()).fireIndexedPropertyChange("", 24992, new UnresolvedAddressException(), null);
        System.out.println("OK");
    }
}
======================================================

Output:
C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))

OK

C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . -showversion test
java version 1.5 (subset)

(c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
Exception in thread "main" java.lang.IllegalArgumentException
        at java.util.EventObject.<init>(EventObject.java:46)
        at java.beans.PropertyChangeEvent.<init>(PropertyChangeEvent.java:44)
        at java.beans.IndexedPropertyChangeEvent.<init>(IndexedPropertyChangeEvent.java:54)
        at java.beans.PropertyChangeSupport.fireIndexedPropertyChange(PropertyChangeSupport.java:88)
        at test.main(test.java:7)


-- 
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

        

[jira] Updated: (HARMONY-1336) [classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...)

Posted by "Vladimir Ivanov (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1336?page=all ]

Vladimir Ivanov updated HARMONY-1336:
-------------------------------------

    Attachment: PropertyChangeSupportTest.patch

unit test

> [classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...)
> --------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1336
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1336
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Attachments: PropertyChangeSupportTest.patch
>
>
> The method java.beans.PropertyChangeSupport().fireIndexedPropertyChange("", 24992, new UnresolvedAddressException(), null) throws IllegalArgumentException on Harmony and works silently on RI.
> ====================== test.java =========================
> import java.nio.channels.UnresolvedAddressException;
> import java.beans.PropertyChangeSupport;
> import javax.swing.plaf.metal.MetalIconFactory;
> public class test {
>     public static void main(String args[]) {
>         new PropertyChangeSupport(new MetalIconFactory.PaletteCloseIcon()).fireIndexedPropertyChange("", 24992, new UnresolvedAddressException(), null);
>         System.out.println("OK");
>     }
> }
> ======================================================
> Output:
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> OK
> C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.lang.IllegalArgumentException
>         at java.util.EventObject.<init>(EventObject.java:46)
>         at java.beans.PropertyChangeEvent.<init>(PropertyChangeEvent.java:44)
>         at java.beans.IndexedPropertyChangeEvent.<init>(IndexedPropertyChangeEvent.java:54)
>         at java.beans.PropertyChangeSupport.fireIndexedPropertyChange(PropertyChangeSupport.java:88)
>         at test.main(test.java:7)

-- 
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