Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4934271

BeanContextSupport.setLocale(null) does change locale property

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 5.0
    • client-libs
    • sparc
    • solaris_2.6



      Name: sdR10048 Date: 10/08/2003


      Filed By : SPB JCK team (###@###.###)
      JDK : java full version "1.5.0-beta-b22"
      JCK : 1.5
      Platform[s] : Solaris
      switch/Mode :
      JCK test owner : http://javaweb.eng/jct/sqe/JCK-tck/usr/owners.jto
      Failing Test [s] :
      api/java_beans/beancontext/BeanContextSupport/index.html#Simple[BeanContextSupport0012]
      (the updated version of this test will be in WS soon, please see mini demo).


      Specification excerpt:
      ======================
      --------- J2SE API spec v.1.5 ---------
      ...
      public void setLocale(Locale newLocale)
                     throws PropertyVetoException
      Sets the locale of this BeanContext.

      Parameters:
      newLocale - the new locale. This method call will have no effect if newLocale is null.
      Throws:
      PropertyVetoException - if the new value is rejected
      ...
      ---------- end-of-excerpt ---------------

      Problem description
      ===================
      The designated method does change the locale property to null.
      But should not as spec says.

          
      Minimized test:
      ===============
      ------- T.java -------
      import java.beans.beancontext.*;
      import java.beans.*;
      import java.util.*;

      public class T {
          public static void main(String[] args) {
              BeanContextSupport bcs = new BeanContextSupport();
              try {
                  bcs.setLocale(Locale.US);
                  System.out.println("LOCALE (1): "+bcs.getLocale());
                  bcs.setLocale(null);
                  System.out.println("LOCALE (should not change): "+bcs.getLocale());
              } catch (PropertyVetoException e) {
                  e.printStackTrace();
              }
          }
      }

      ------- end-of-T.java -------

      Minimized test output:
      ======================
      LOCALE (1): en_US
      LOCALE (should not change): null


      ======================================================================

            mdavidsosunw Mark Davidson (Inactive)
            dsvsunw Dsv Dsv (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: