-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
5.0
-
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
======================================================================
- duplicates
-
JDK-4179381 BC: method BeanContextSuport.setLocale(null) works wrong
-
- Closed
-