#*******************************************************************************\r
-#* Copyright (C) 2009-2011, International Business Machines Corporation and *\r
+#* Copyright (C) 2009-2012, International Business Machines Corporation and *\r
#* others. All Rights Reserved. *\r
#*******************************************************************************\r
api.report.version = 49\r
api.report.prev.version = 48\r
-release.file.ver = 49m2\r
+release.file.ver = 49_1\r
\r
#*******************************************************************************
-#* Copyright (C) 2010-2011, International Business Machines Corporation and *
+#* Copyright (C) 2010-2012, International Business Machines Corporation and *
#* others. All Rights Reserved. *
#*******************************************************************************
-icu4j.plugin.impl.version.string=49.0.2
-copyright.eclipse=Licensed Materials - Property of IBM \n (C) Copyright IBM Corp. 2000, 2011. All Rights Reserved. \n IBM is a registered trademark of IBM Corp.
+icu4j.plugin.impl.version.string=49.1
+copyright.eclipse=Licensed Materials - Property of IBM \n (C) Copyright IBM Corp. 2000, 2012. All Rights Reserved. \n IBM is a registered trademark of IBM Corp.
icu4j.data.version.number=49
<body lang="EN-US">
<h2>About This Content</h2>
-<p>XXXX XX, 2011</p>
+<p>XXXX XX, 2012</p>
<h3>License</h3>
<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
for informational purposes only, and you should look to the Redistributor's license for
terms and conditions of use.</p>
- <p><strong>ICU4J 4.8.X.v2011XXXX plug-in</strong> <br/><br/>
+ <p><strong>ICU4J 49.X.X.v2012XXXX plug-in</strong> <br/><br/>
The plug-in includes software ("ICU4J") developed by International Business Machines
Corporation and others.
<br/><br/>
ICU4J is:
<blockquote>
- Copyright (c) 1995-2011 International Business Machines Corporation and others<br/>
+ Copyright (c) 1995-2012 International Business Machines Corporation and others<br/>
All rights reserved.
</blockquote>
<p>
<body lang="EN-US">
<h2>About This Content</h2>
-<p>XXXX XX, 2011</p>
+<p>XXXX XX, 2012</p>
<h3>License</h3>
<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
for informational purposes only, and you should look to the Redistributor's license for
terms and conditions of use.</p>
- <p><strong>ICU4J 4.8.X.v2011XXXX base plug-in</strong> <br/><br/>
+ <p><strong>ICU4J 49.X.X.v2012XXXX base plug-in</strong> <br/><br/>
The plug-in includes software ("ICU4J") developed by International Business Machines
Corporation and others.
<br/><br/>
ICU4J is:
<blockquote>
- Copyright (c) 1995-2011 International Business Machines Corporation and others<br/>
+ Copyright (c) 1995-2012 International Business Machines Corporation and others<br/>
All rights reserved.
</blockquote>
<p>
UNICODE_6_0 = getInstance(6, 0, 0, 0);
UNICODE_6_1 = getInstance(6, 1, 0, 0);
- ICU_VERSION = getInstance(49, 0, 2, 0);
- ICU_DATA_VERSION = getInstance(49, 0, 2, 0);
+ ICU_VERSION = getInstance(49, 1, 0, 0);
+ ICU_DATA_VERSION = getInstance(49, 1, 0, 0);
UNICODE_VERSION = UNICODE_6_1;
UCOL_RUNTIME_VERSION = getInstance(7);
#*******************************************************************************
-#* Copyright (C) 2009-2011, International Business Machines Corporation and *
+#* Copyright (C) 2009-2012, International Business Machines Corporation and *
#* others. All Rights Reserved. *
#*******************************************************************************
# Version numbers, etc.
icu4j.spec.version = 49
-icu4j.impl.version = 49.0.2
+icu4j.impl.version = 49.1
icu4j.data.version = 49
-current.year = 2011
+current.year = 2012
default.exec.env = J2SE-1.5
corp = IBM Corporation
/*
*******************************************************************************
- * Copyright (C) 2000-2011, International Business Machines Corporation and *
+ * Copyright (C) 2000-2012, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
}
public void TestSupplementary() {
- if (isICUVersionBefore(49, 1)) { // ticket#8080
+ if (isICUVersionBefore(50, 0, 1)) { // ticket#8080
return;
}
int count = 0;
}
public void TestSupplementaryCanonical() {
- if (isICUVersionBefore(49, 1)) { // ticket#8080
+ if (isICUVersionBefore(50, 0, 1)) { // ticket#8080
return;
}
int count = 0;
for (int i = 0; i < locales.length; ++i) {
for (int style1 = DateFormat.FULL; style1 <= DateFormat.SHORT; ++style1) {
for (int style2 = DateFormat.FULL; style2 < style1; ++style2) {
- checkCompatible(style1, style2, locales[i]);
+ checkCompatible(style1, style2, locales[i]);
}
}
}
DateOrder order2 = getOrdering(style2, uLocale);
if (!order1.hasSameOrderAs(order2)) {
if (order1.monthLength == order2.monthLength) { // error if have same month length, different ordering
- if (isICUVersionBefore(49, 1)) { // ticket#6806
+ if (isICUVersionBefore(50, 0, 1)) { // ticket#6806
logln(showOrderComparison(uLocale, style1, style2, order1, order2));
} else {
errln(showOrderComparison(uLocale, style1, style2, order1, order2));
/**
*******************************************************************************
- * Copyright (C) 2000-2011, International Business Machines Corporation and
+ * Copyright (C) 2000-2012, International Business Machines Corporation and
* others. All Rights Reserved.
*******************************************************************************
*/
public void init() {
// TODO(Mark): Fix ticket #8989, transliterate U+0970.
// Remove this method?
- beforeICU49 = isICUVersionBefore(49, 1);
+ beforeICU49 = isICUVersionBefore(50, 0, 1);
minusDevAbbBefore49 = beforeICU49 ? "-[\u0970]" : "";
}