You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sian January (JIRA)" <ji...@apache.org> on 2007/08/01 17:17:53 UTC

[jira] Commented: (HARMONY-1568) [classlib][beans] XMLDecoder(3 params).getExceptionListener() returns object on RI and 'null' on Harmony

    [ https://issues.apache.org/jira/browse/HARMONY-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12516995 ] 

Sian January commented on HARMONY-1568:
---------------------------------------

Hi Tim,

Sorry - it looks like I do have quite an old version.  Actually the fix in the repository is fine, it does return the default listener from getExceptionListener() (which is what the RI does), it is just only using one variable wheras my implementation used two (see line 469).  Hope that makes sense.  

I think this issue can be marked as fixed.  Thanks for looking at it.

> [classlib][beans] XMLDecoder(3 params).getExceptionListener() returns object on RI and 'null' on Harmony
> --------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1568
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1568
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>            Assignee: Tim Ellison
>         Attachments: beans.patch
>
>
> The spec says for the constructor XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener): 
>  "exceptionListener - the exception handler for the stream; if null the default exception listener will be used"
> The RI use default listener while harmony 'null'.
> ============== test.java ====================
> import java.beans.*;
> import java.io.ByteArrayInputStream;
> public class test {     
>    public static void main(String[] args) {  
>        System.out.println("res = " + new XMLDecoder(new ByteArrayInputStream(new byte[] {1, 2}), new Double(1), null).getExceptionListener());
>     }    
> }
> =========================================
> 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))
> res = java.beans.Statement$1@1b3534
> C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . test
> res = null

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.