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

[jira] Commented: (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:comment-tabpanel#action_12463936 ] 

sergey krivenko commented on HARMONY-2350:
------------------------------------------

Sorry, I didn't revert changes made to fix the previous bug.

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