You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sandy McArthur (JIRA)" <ji...@apache.org> on 2007/04/16 08:38:15 UTC

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

     [ https://issues.apache.org/jira/browse/HARMONY-1336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sandy McArthur updated HARMONY-1336:
------------------------------------

    Attachment: harmony-1336.patch

Patch to fix this issue

> [classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...)
> --------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1336
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1336
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Assigned To: Nathan Beyer
>            Priority: Minor
>         Attachments: harmony-1336.patch, 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.
-
You can reply to this email to add a comment to the issue online.