You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/01/11 18:39:27 UTC

[jira] Resolved: (HARMONY-2350) [classlib] [beans] Method addAll() in class BeanContextSupport doesn't throw UnsupportedOperationException

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

Alexei Zakharov resolved HARMONY-2350.
--------------------------------------

    Resolution: Fixed

Changes were committed at the revision r495302. I didn't apply the patch for test since the described situation is already covered by testAddAll() test. Please verify that everything was applied as expected.

> [classlib] [beans] Method addAll() in class BeanContextSupport doesn't throw UnsupportedOperationException
> ----------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2350
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2350
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: WIN XP
>            Reporter: Sergey Krivenko
>         Assigned To: Alexei Zakharov
>         Attachments: BeanContextSupport2.patch, BeanContextSupportTest2.patch
>
>
> According to specification the following code shoud throw UnsupportedOperationException:
> import java.beans.beancontext.BeanContextServicesSupport;
> public class Bug9278 {
>     public static void main(String[] args) {
>         try {
>             BeanContextServicesSupport s1 = new BeanContextServicesSupport();
>             BeanContextServicesSupport s2 = new BeanContextServicesSupport();
>             s1.addAll(s2);
>             System.out.println(
>                     "UnsupportedOperationException should be thrown");
>         } catch (UnsupportedOperationException e) {
>             System.out.println("PASSED");            
>         }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira