mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-13413 Merge pull request #43 from yumaoka/icu4j-java7
ICU-13413 Update the minimum Java runtime version to 7
This commit is contained in:
commit
8a52f44951
101 changed files with 608 additions and 1249 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -925,6 +925,7 @@ icu4j/build-local.properties
|
|||
icu4j/demos/out
|
||||
icu4j/doc
|
||||
icu4j/eclipse
|
||||
icu4j/eclipse-build/build-local.properties
|
||||
icu4j/eclipse-build/out
|
||||
icu4j/lib/*.jar
|
||||
icu4j/main/classes/charset/out
|
||||
|
|
|
@ -86,10 +86,6 @@
|
|||
<property name="external-jars" value="lib"/>
|
||||
|
||||
<!-- Java version check -->
|
||||
<condition property="is.java6">
|
||||
<matches string="${java.version}" pattern="1\.6\.\d.*"/>
|
||||
</condition>
|
||||
|
||||
<condition property="is.java7">
|
||||
<matches string="${java.version}" pattern="1\.7\.\d.*"/>
|
||||
</condition>
|
||||
|
@ -131,16 +127,10 @@
|
|||
</or>
|
||||
</condition>
|
||||
|
||||
<condition property="is.java6.plus">
|
||||
<or>
|
||||
<isset property="is.java6"/>
|
||||
<isset property="is.java7.plus"/>
|
||||
</or>
|
||||
</condition>
|
||||
<fail message="The JDK version is too old or unknown.">
|
||||
<condition>
|
||||
<not>
|
||||
<isset property="is.java6.plus"/>
|
||||
<isset property="is.java7.plus"/>
|
||||
</not>
|
||||
</condition>
|
||||
</fail>
|
||||
|
@ -660,7 +650,7 @@
|
|||
</icu-junit>
|
||||
</target>
|
||||
|
||||
<target name="localespiCheck" if="is.java6.plus" depends="info, localespi, localespi-tests" description="Run the ICU4J Locale SPI test suite">
|
||||
<target name="localespiCheck" depends="info, localespi, localespi-tests" description="Run the ICU4J Locale SPI test suite">
|
||||
<antcall target="_localespiCheck"/>
|
||||
<fail message="test failed" if="icu-junit-failure" />
|
||||
</target>
|
||||
|
@ -750,7 +740,7 @@
|
|||
<condition property="release.build.config.ok">
|
||||
<and>
|
||||
<isset property="is.java8"/>
|
||||
<isset property="java6.bootclasspath"/>
|
||||
<isset property="java7.bootclasspath"/>
|
||||
<isset property="jcite.libs"/>
|
||||
</and>
|
||||
</condition>
|
||||
|
@ -760,8 +750,8 @@
|
|||
<condition property="disp.is.java8" value="${java.version}" else="${java.version} - Must be 1.8!">
|
||||
<isset property="is.java8"/>
|
||||
</condition>
|
||||
<condition property="disp.java6.bootclasspath" value="${java6.bootclasspath}" else="Not Defined!">
|
||||
<isset property="java6.bootclasspath"/>
|
||||
<condition property="disp.java7.bootclasspath" value="${java7.bootclasspath}" else="Not Defined!">
|
||||
<isset property="java7.bootclasspath"/>
|
||||
</condition>
|
||||
<condition property="disp.jcite.libs" value="${jcite.libs}" else="Not Defined!">
|
||||
<isset property="jcite.libs"/>
|
||||
|
@ -769,8 +759,8 @@
|
|||
|
||||
<echo message="################################################################"/>
|
||||
<echo message="[WARNING] Insufficient Build Configuration for ICU4J Release"/>
|
||||
<echo message="JDK Tools Version: ${disp.is.java8}"/>
|
||||
<echo message="JRE 6 System Library Path: ${disp.java6.bootclasspath}"/>
|
||||
<echo message="JDK 8 Tools: ${disp.is.java8}"/>
|
||||
<echo message="JRE 7 System Library Path: ${disp.java7.bootclasspath}"/>
|
||||
<echo message="JCite Library Path: ${disp.jcite.libs}"/>
|
||||
<echo message="################################################################"/>
|
||||
</target>
|
||||
|
@ -1192,11 +1182,7 @@
|
|||
<ant dir="${icu4j.langdata.dir}" inheritAll="false"/>
|
||||
</target>
|
||||
|
||||
<target name="localespi" if="is.java6.plus" description="Build Locale SPI classes">
|
||||
<antcall target="_build-localespi"/>
|
||||
</target>
|
||||
|
||||
<target name="_build-localespi" depends="core, collate, currdata, langdata, regiondata">
|
||||
<target name="localespi" depends="core, collate, currdata, langdata, regiondata" description="Build Locale SPI classes">
|
||||
<ant dir="${icu4j.localespi.dir}" inheritAll="false"/>
|
||||
</target>
|
||||
|
||||
|
@ -1232,11 +1218,7 @@
|
|||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="localespi-tests" if="is.java6.plus" description="Build Locale SPI tests">
|
||||
<antcall target="_build-localespi-tests"/>
|
||||
</target>
|
||||
|
||||
<target name="_build-localespi-tests" depends="localespi, test-framework">
|
||||
<target name="localespi-tests" depends="localespi, test-framework" description="Build Locale SPI tests">
|
||||
<ant dir="${icu4j.localespi-tests.dir}" inheritAll="false">
|
||||
<reference refid="junit.jars"/>
|
||||
</ant>
|
||||
|
@ -1270,7 +1252,7 @@
|
|||
<ant dir="${icu4j.tools.dir}" inheritAll="false"/>
|
||||
</target>
|
||||
|
||||
<target name="perf-tests" if="is.java6.plus" depends="core, charset, collate, tools" description="Build performance test classes">
|
||||
<target name="perf-tests" depends="core, charset, collate, tools" description="Build performance test classes">
|
||||
<ant dir="${icu4j.perf-tests.dir}" inheritAll="false"/>
|
||||
</target>
|
||||
|
||||
|
@ -1300,9 +1282,6 @@
|
|||
</target>
|
||||
|
||||
<target name="_docsStyleSheet">
|
||||
<condition property="docs.style.sheet" value="stylesheet6.css">
|
||||
<isset property="is.java6"/>
|
||||
</condition>
|
||||
<condition property="docs.style.sheet" value="stylesheet7.css">
|
||||
<isset property="is.java7"/>
|
||||
</condition>
|
||||
|
@ -1620,8 +1599,8 @@
|
|||
|
||||
<!-- Release management targets -->
|
||||
<target name="checktags" depends="info, build-tools" description="Check API tags before release">
|
||||
<javadoc source="1.6"
|
||||
bootclasspath="${java6.bootclasspath}"
|
||||
<javadoc source="1.7"
|
||||
bootclasspath="${java7.bootclasspath}"
|
||||
encoding="${java.src.encoding}">
|
||||
<packageset dir="${icu4j.core.dir}/src">
|
||||
<include name="com/ibm/icu/lang/**"/>
|
||||
|
@ -1642,8 +1621,8 @@
|
|||
|
||||
<target name="gatherapi" depends="info, build-tools" description="Run API database generator tool">
|
||||
<mkdir dir="${out.dir}"/>
|
||||
<javadoc source="1.6"
|
||||
bootclasspath="${java6.bootclasspath}"
|
||||
<javadoc source="1.7"
|
||||
bootclasspath="${java7.bootclasspath}"
|
||||
encoding="${java.src.encoding}">
|
||||
<packageset dir="${icu4j.core.dir}/src">
|
||||
<include name="com/ibm/icu/lang/**"/>
|
||||
|
@ -1688,8 +1667,8 @@
|
|||
|
||||
<target name="gatherapiOld" depends="info, build-tools" description="Run API database generator tool (Pre Java 5 style)">
|
||||
<mkdir dir="${out.dir}"/>
|
||||
<javadoc source="1.6"
|
||||
bootclasspath="${java6.bootclasspath}"
|
||||
<javadoc source="1.7"
|
||||
bootclasspath="${java7.bootclasspath}"
|
||||
encoding="${java.src.encoding}">
|
||||
<packageset dir="${icu4j.core.dir}/src">
|
||||
<include name="com/ibm/icu/lang/**"/>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-charset"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-translit"/>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=ignore
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#eclipse.home=
|
||||
|
||||
#
|
||||
# Java 6 runtime jar location
|
||||
# Java 7 runtime jar location
|
||||
# Specify jar file path(es) including Java runtime classes.
|
||||
#
|
||||
# Note:
|
||||
|
@ -25,19 +25,15 @@
|
|||
#
|
||||
# For example:
|
||||
#
|
||||
# java.rt=C:/ibmjre6/bin/default/jclSC160/vm.jar;C:/ibmjre6/lib/annotation.jar;C:/ibmjre6/lib/beans.jar;\
|
||||
# C:/ibmjre6/lib/java.util.jar;C:/ibmjre6/lib/jndi.jar;C:/ibmjre6/lib/logging.jar;C:/ibmjre6/lib/security.jar;\
|
||||
# C:/ibmjre6/lib/sql.jar;C:/ibmjre6/lib/ibmorb.jar;C:/ibmjre6/lib/ibmorbapi.jar;C:/ibmjre6/lib/ibmcfw.jar;\
|
||||
# C:/ibmjre6/lib/rt.jar;C:/ibmjre6/lib/charsets.jar;C:/ibmjre6/lib/resources.jar;C:/ibmjre6/lib/ibmpkcs.jar;\
|
||||
# C:/ibmjre6/lib/ibmcertpathfw.jar;C:/ibmjre6/lib/ibmjgssfw.jar;C:/ibmjre6/lib/ibmjssefw.jar;\
|
||||
# C:/ibmjre6/lib/ibmsaslfw.jar;C:/ibmjre6/lib/ibmjcefw.jar;C:/ibmjre6/lib/ibmjgssprovider.jar;\
|
||||
# C:/ibmjre6/lib/ibmjsseprovider2.jar;C:/ibmjre6/lib/ibmcertpathprovider.jar;C:/ibmjre6/lib/management-agent.jar;\
|
||||
# C:/ibmjre6/lib/xml.jar;C:/ibmjre6/lib/jlm.jar;C:/ibmjre6/lib/javascript.jar
|
||||
# java.rt=C:/java7/jre/lib/resources.jar;C:/java7/jre/lib/rt.jar;\
|
||||
# C:/java7/jre/lib/sunrsasign.jar;C:/java7/jre/lib/jsse.jar;\
|
||||
# C:/java7/jre/lib/jce.jar;C:/java7/jre/lib/charsets.jar;
|
||||
# C:/java7/jre/lib/jfr.jar;C:/java7/jre/classes
|
||||
#
|
||||
# NOTE: slashes must be forward slashes. Backslashes will NOT work as path separator.
|
||||
#
|
||||
# IF java.rt variable has embedded space(s)...
|
||||
# ...each element containing an embedded space java.rt must individually quoted and the elements separated by a semi-colon.
|
||||
# ex. "C:/Program Files/IBM/Java50JDK/jre/lib/vm.jar";"C:/Program Files/IBM/Java50JDK/jre/lib/core.jar"
|
||||
# ^^^
|
||||
# ex. "C:/Program Files/IBM/JDK7/jre/lib/vm.jar";"C:/Program Files/IBM/JDK7/jre/lib/core.jar"
|
||||
# ^^^
|
||||
#java.rt=
|
||||
|
|
|
@ -191,7 +191,8 @@ skipFetch=true
|
|||
#J2SE-1.4=
|
||||
#J2SE-1.5=
|
||||
#JavaSE-1.6=
|
||||
JavaSE-1.6=@JAVA_RT@
|
||||
#JavaSE-1.7=
|
||||
JavaSE-1.7=@JAVA_RT@
|
||||
#PersonalJava-1.1=
|
||||
#PersonalJava-1.2=
|
||||
#CDC-1.0/PersonalBasis-1.0=
|
||||
|
@ -218,6 +219,6 @@ compilerArg=-inlineJSR -enableJavadoc -encoding UTF-8
|
|||
javacSource=1.6
|
||||
|
||||
# Default value for the version of the byte code targeted. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacTarget in build.properties.
|
||||
javacTarget=1.6
|
||||
javacTarget=1.7
|
||||
|
||||
individualSourceBundles=true
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -1,78 +1,77 @@
|
|||
#Thu Jan 13 17:45:06 EST 2011
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
|
||||
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||
org.eclipse.jdt.core.compiler.problem.deadCode=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
|
||||
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
|
||||
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
|
||||
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
|
||||
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
|
||||
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.nullReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
|
||||
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
|
||||
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
|
||||
org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
|
||||
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.nullReference=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
|
||||
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
|
||||
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
|
||||
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
|
||||
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.deadCode=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
|
||||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
|
||||
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
|
|
|
@ -7,4 +7,4 @@ Bundle-Vendor: %providerName
|
|||
Fragment-Host: com.ibm.icu.base
|
||||
Bundle-Copyright: @COPYRIGHT@
|
||||
Require-Bundle: org.junit
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
#Mon Aug 30 14:05:56 EDT 2010
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||
org.eclipse.jdt.core.compiler.problem.deadCode=warning
|
||||
|
@ -17,7 +16,7 @@ org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
|||
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||
|
@ -74,4 +73,4 @@ org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disa
|
|||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
|
|
|
@ -12,4 +12,4 @@ Export-Package: com.ibm.icu.text;base=true;version="@IMPL_VERSION@",
|
|||
com.ibm.icu.impl;x-internal:=true,
|
||||
com.ibm.icu.impl.locale;x-internal:=true
|
||||
Eclipse-LazyStart: true
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -1,78 +1,77 @@
|
|||
#Thu Jan 13 17:45:06 EST 2011
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
|
||||
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||
org.eclipse.jdt.core.compiler.problem.deadCode=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
|
||||
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
|
||||
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
|
||||
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
|
||||
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
|
||||
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.nullReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
|
||||
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
|
||||
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
|
||||
org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
|
||||
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
|
||||
org.eclipse.jdt.core.compiler.problem.nullReference=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
|
||||
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
|
||||
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
|
||||
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
|
||||
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.deadCode=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
|
||||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
|
||||
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
|
|
|
@ -7,4 +7,4 @@ Bundle-Vendor: %providerName
|
|||
Fragment-Host: com.ibm.icu
|
||||
Bundle-Copyright: @COPYRIGHT@
|
||||
Require-Bundle: org.junit
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
#Mon Aug 30 14:05:56 EDT 2010
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||
org.eclipse.jdt.core.compiler.problem.deadCode=warning
|
||||
|
@ -17,7 +16,7 @@ org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
|||
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||
|
@ -74,4 +73,4 @@ org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disa
|
|||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
|
|
|
@ -24,6 +24,6 @@ Export-Package: com.ibm.icu.lang;base=true;full=true;version="@IMPL_VERSION@",
|
|||
com.ibm.icu.impl.duration;x-internal:=true,
|
||||
com.ibm.icu.impl.locale;x-internal:=true
|
||||
Eclipse-LazyStart: true
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
Bundle-ClassPath: icu-data.jar,.
|
||||
Eclipse-ExtensibleAPI: true
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -7,9 +7,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
|
|||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -110,7 +110,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -407,7 +407,6 @@ final class UConverterDataReader {
|
|||
//private final static boolean debug = ICUDebug.enabled("UConverterDataReader");
|
||||
|
||||
private static final class IsAcceptable implements ICUBinary.Authenticate {
|
||||
// @Override when we switch to Java 6
|
||||
@Override
|
||||
public boolean isDataVersionAcceptable(byte formatVersion[]) {
|
||||
return formatVersion[0] == 6;
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -7,9 +7,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
|
|||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -110,7 +110,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -137,9 +137,7 @@ public final class CollationSettings extends SharedObject {
|
|||
if(codesLength == codesAndRanges.length) {
|
||||
codes = codesAndRanges;
|
||||
} else {
|
||||
// TODO: Java 6: Arrays.copyOf(codes, codesLength);
|
||||
codes = new int[codesLength];
|
||||
System.arraycopy(codesAndRanges, 0, codes, 0, codesLength);
|
||||
codes = Arrays.copyOf(codesAndRanges, codesLength);
|
||||
}
|
||||
int rangesStart = codesLength;
|
||||
int rangesLimit = codesAndRanges.length;
|
||||
|
|
|
@ -13,13 +13,13 @@ import java.lang.reflect.Method;
|
|||
import java.text.CharacterIterator;
|
||||
import java.text.ParseException;
|
||||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.locks.Lock;
|
||||
import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
import com.ibm.icu.impl.ClassLoaderUtil;
|
||||
import com.ibm.icu.impl.Normalizer2Impl;
|
||||
import com.ibm.icu.impl.Normalizer2Impl.ReorderingBuffer;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.coll.BOCSU;
|
||||
import com.ibm.icu.impl.coll.Collation;
|
||||
import com.ibm.icu.impl.coll.CollationCompare;
|
||||
|
@ -72,7 +72,7 @@ import com.ibm.icu.util.VersionInfo;
|
|||
*
|
||||
* <p>
|
||||
* <strong>Note</strong> that there are some differences between the Collation rule syntax used in Java and ICU4J:
|
||||
*
|
||||
*
|
||||
* <ul>
|
||||
* <li>According to the JDK documentation: <br>
|
||||
* <i>Modifier '!' : Turns on Thai/Lao vowel-consonant swapping. If this rule is in force when a Thai vowel of the range
|
||||
|
@ -91,7 +91,7 @@ import com.ibm.icu.util.VersionInfo;
|
|||
* <strong>Examples</strong>
|
||||
* <p>
|
||||
* Creating Customized RuleBasedCollators: <blockquote>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* String simple = "& a < b < c < d";
|
||||
* RuleBasedCollator simpleCollator = new RuleBasedCollator(simple);
|
||||
|
@ -106,11 +106,11 @@ import com.ibm.icu.util.VersionInfo;
|
|||
* + ", \u00C6 < \u00F8 , \u00D8";
|
||||
* RuleBasedCollator norwegianCollator = new RuleBasedCollator(norwegian);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* </blockquote>
|
||||
*
|
||||
*
|
||||
* Concatenating rules to combine <code>Collator</code>s: <blockquote>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* // Create an en_US Collator object
|
||||
* RuleBasedCollator en_USCollator = (RuleBasedCollator)
|
||||
|
@ -127,12 +127,12 @@ import com.ibm.icu.util.VersionInfo;
|
|||
* new RuleBasedCollator(en_USRules + da_DKRules);
|
||||
* // newCollator has the combined rules
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* </blockquote>
|
||||
*
|
||||
*
|
||||
* Making changes to an existing RuleBasedCollator to create a new <code>Collator</code> object, by appending changes to
|
||||
* the existing rule: <blockquote>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* // Create a new Collator object with additional rules
|
||||
* String addRules = "& C < ch, cH, Ch, CH";
|
||||
|
@ -140,11 +140,11 @@ import com.ibm.icu.util.VersionInfo;
|
|||
* new RuleBasedCollator(en_USCollator.getRules() + addRules);
|
||||
* // myCollator contains the new rules
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* </blockquote>
|
||||
*
|
||||
*
|
||||
* How to change the order of non-spacing accents: <blockquote>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* // old rule with main accents
|
||||
* String oldRules = "= \u0301 ; \u0300 ; \u0302 ; \u0308 "
|
||||
|
@ -158,12 +158,12 @@ import com.ibm.icu.util.VersionInfo;
|
|||
* String addOn = "& \u0300 ; \u0308 ; \u0302";
|
||||
* RuleBasedCollator myCollator = new RuleBasedCollator(oldRules + addOn);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* </blockquote>
|
||||
*
|
||||
*
|
||||
* Putting in a new primary ordering before the default setting, e.g. sort English characters before or after Japanese
|
||||
* characters in the Japanese <code>Collator</code>: <blockquote>
|
||||
*
|
||||
*
|
||||
* <pre>
|
||||
* // get en_US Collator rules
|
||||
* RuleBasedCollator en_USCollator
|
||||
|
@ -176,7 +176,7 @@ import com.ibm.icu.util.VersionInfo;
|
|||
* RuleBasedCollator myJapaneseCollator
|
||||
* = new RuleBasedCollator(en_USCollator.getRules() + jaString);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* </blockquote>
|
||||
* <p>
|
||||
* This class is not subclassable
|
||||
|
@ -240,7 +240,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Clones the RuleBasedCollator
|
||||
*
|
||||
*
|
||||
* @return a new instance of this RuleBasedCollator object
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -262,7 +262,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Return a CollationElementIterator for the given String.
|
||||
*
|
||||
*
|
||||
* @see CollationElementIterator
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -274,7 +274,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Return a CollationElementIterator for the given CharacterIterator. The source iterator's integrity will be
|
||||
* preserved since a new copy will be created for use.
|
||||
*
|
||||
*
|
||||
* @see CollationElementIterator
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -287,7 +287,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Return a CollationElementIterator for the given UCharacterIterator. The source iterator's integrity will be
|
||||
* preserved since a new copy will be created for use.
|
||||
*
|
||||
*
|
||||
* @see CollationElementIterator
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -336,7 +336,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
try {
|
||||
RuleBasedCollator result = (RuleBasedCollator) super.clone();
|
||||
// since all collation data in the RuleBasedCollator do not change
|
||||
// we can safely assign the result.fields to this collator
|
||||
// we can safely assign the result.fields to this collator
|
||||
// except in cases where we can't
|
||||
result.settings = settings.clone();
|
||||
result.collationBuffer = null;
|
||||
|
@ -407,7 +407,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* Sets whether uppercase characters sort before lowercase characters or vice versa, in strength TERTIARY. The
|
||||
* default mode is false, and so lowercase characters sort before uppercase characters. If true, sort upper case
|
||||
* characters first.
|
||||
*
|
||||
*
|
||||
* @param upperfirst
|
||||
* true to sort uppercase characters before lowercase characters, false to sort lowercase characters
|
||||
* before uppercase characters
|
||||
|
@ -429,7 +429,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* Sets the orders of lower cased characters to sort before upper cased characters, in strength TERTIARY. The
|
||||
* default mode is false. If true is set, the RuleBasedCollator will sort lower cased characters before the upper
|
||||
* cased ones. Otherwise, if false is set, the RuleBasedCollator will ignore case preferences.
|
||||
*
|
||||
*
|
||||
* @param lowerfirst
|
||||
* true for sorting lower cased characters before upper cased characters, false to ignore case
|
||||
* preferences.
|
||||
|
@ -450,7 +450,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Sets the case first mode to the initial mode set during construction of the RuleBasedCollator. See
|
||||
* setUpperCaseFirst(boolean) and setLowerCaseFirst(boolean) for more details.
|
||||
*
|
||||
*
|
||||
* @see #isLowerCaseFirst
|
||||
* @see #isUpperCaseFirst
|
||||
* @see #setLowerCaseFirst(boolean)
|
||||
|
@ -469,7 +469,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Sets the alternate handling mode to the initial mode set during construction of the RuleBasedCollator. See
|
||||
* setAlternateHandling(boolean) for more details.
|
||||
*
|
||||
*
|
||||
* @see #setAlternateHandlingShifted(boolean)
|
||||
* @see #isAlternateHandlingShifted()
|
||||
* @stable ICU 2.8
|
||||
|
@ -486,7 +486,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Sets the case level mode to the initial mode set during construction of the RuleBasedCollator. See
|
||||
* setCaseLevel(boolean) for more details.
|
||||
*
|
||||
*
|
||||
* @see #setCaseLevel(boolean)
|
||||
* @see #isCaseLevel
|
||||
* @stable ICU 2.8
|
||||
|
@ -503,7 +503,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Sets the decomposition mode to the initial mode set during construction of the RuleBasedCollator. See
|
||||
* setDecomposition(int) for more details.
|
||||
*
|
||||
*
|
||||
* @see #getDecomposition
|
||||
* @see #setDecomposition(int)
|
||||
* @stable ICU 2.8
|
||||
|
@ -520,7 +520,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Sets the French collation mode to the initial mode set during construction of the RuleBasedCollator. See
|
||||
* setFrenchCollation(boolean) for more details.
|
||||
*
|
||||
*
|
||||
* @see #isFrenchCollation
|
||||
* @see #setFrenchCollation(boolean)
|
||||
* @stable ICU 2.8
|
||||
|
@ -537,7 +537,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Sets the collation strength to the initial mode set during the construction of the RuleBasedCollator. See
|
||||
* setStrength(int) for more details.
|
||||
*
|
||||
*
|
||||
* @see #setStrength(int)
|
||||
* @see #getStrength
|
||||
* @stable ICU 2.8
|
||||
|
@ -572,7 +572,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* which treats SECONDARY weights in the order they appear. If set to true, the SECONDARY weights will be sorted
|
||||
* backwards. See the section on <a href="http://userguide.icu-project.org/collation/architecture">
|
||||
* French collation</a> for more information.
|
||||
*
|
||||
*
|
||||
* @param flag
|
||||
* true to set the French collation on, false to set it off
|
||||
* @stable ICU 2.8
|
||||
|
@ -595,7 +595,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* the code points with non-ignorable primary weights in the same way. If the mode is set to true, the behavior
|
||||
* corresponds to SHIFTED defined in UCA, this causes code points with PRIMARY orders that are equal or below the
|
||||
* variable top value to be ignored in PRIMARY order and moved to the QUATERNARY order.
|
||||
*
|
||||
*
|
||||
* @param shifted
|
||||
* true if SHIFTED behavior for alternate handling is desired, false for the NON_IGNORABLE behavior.
|
||||
* @see #isAlternateHandlingShifted
|
||||
|
@ -692,7 +692,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* considered significant during comparison.
|
||||
*
|
||||
* <p>See the Collator class description for an example of use.
|
||||
*
|
||||
*
|
||||
* @param newStrength
|
||||
* the new strength value.
|
||||
* @see #getStrength
|
||||
|
@ -780,7 +780,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* the top of one of the supported reordering groups,
|
||||
* and it must not be beyond the last of those groups.
|
||||
* See {@link #setMaxVariable(int)}.
|
||||
*
|
||||
*
|
||||
* @param varTop
|
||||
* one or more (if contraction) characters to which the variable top should be set
|
||||
* @return variable top primary weight
|
||||
|
@ -829,7 +829,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* the top of one of the supported reordering groups,
|
||||
* and it must not be beyond the last of those groups.
|
||||
* See {@link #setMaxVariable(int)}.
|
||||
*
|
||||
*
|
||||
* @param varTop primary weight, as returned by setVariableTop or getVariableTop
|
||||
* @see #getVariableTop
|
||||
* @see #setVariableTop(String)
|
||||
|
@ -947,7 +947,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Gets the collation tailoring rules for this RuleBasedCollator.
|
||||
* Equivalent to String getRules(false).
|
||||
*
|
||||
*
|
||||
* @return the collation tailoring rules
|
||||
* @see #getRules(boolean)
|
||||
* @stable ICU 2.8
|
||||
|
@ -960,7 +960,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* Returns current rules.
|
||||
* The argument defines whether full rules (root collation + tailored) rules are returned
|
||||
* or just the tailoring.
|
||||
*
|
||||
*
|
||||
* <p>The root collation rules are an <i>approximation</i> of the root collator's sort order.
|
||||
* They are almost never used or useful at runtime and can be removed from the data.
|
||||
* See <a href="http://userguide.icu-project.org/collation/customization#TOC-Building-on-Existing-Locales">User Guide:
|
||||
|
@ -983,7 +983,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Get a UnicodeSet that contains all the characters and sequences tailored in this collator.
|
||||
*
|
||||
*
|
||||
* @return a pointer to a UnicodeSet object containing all the code points and sequences that may sort differently
|
||||
* than in the root collator.
|
||||
* @stable ICU 2.4
|
||||
|
@ -999,7 +999,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Gets unicode sets containing contractions and/or expansions of a collator
|
||||
*
|
||||
*
|
||||
* @param contractions
|
||||
* if not null, set to contain contractions
|
||||
* @param expansions
|
||||
|
@ -1027,6 +1027,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* @internal
|
||||
* @deprecated This API is ICU internal only.
|
||||
*/
|
||||
@Deprecated
|
||||
void internalAddContractions(int c, UnicodeSet set) {
|
||||
new ContractionsAndExpansions(set, null, null, false).forCodePoint(data, c);
|
||||
}
|
||||
|
@ -1075,7 +1076,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* Gets the simpler form of a CollationKey for the String source following the rules of this Collator and stores the
|
||||
* result into the user provided argument key. If key has a internal byte array of length that's too small for the
|
||||
* result, the internal byte array will be grown to the exact required size.
|
||||
*
|
||||
*
|
||||
* @param source the text String to be transformed into a RawCollationKey
|
||||
* @param key output RawCollationKey to store results
|
||||
* @return If key is null, a new instance of RawCollationKey will be created and returned, otherwise the user
|
||||
|
@ -1267,7 +1268,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Return true if an uppercase character is sorted before the corresponding lowercase character. See
|
||||
* setCaseFirst(boolean) for details.
|
||||
*
|
||||
*
|
||||
* @see #setUpperCaseFirst
|
||||
* @see #setLowerCaseFirst
|
||||
* @see #isLowerCaseFirst
|
||||
|
@ -1282,7 +1283,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Return true if a lowercase character is sorted before the corresponding uppercase character. See
|
||||
* setCaseFirst(boolean) for details.
|
||||
*
|
||||
*
|
||||
* @see #setUpperCaseFirst
|
||||
* @see #setLowerCaseFirst
|
||||
* @see #isUpperCaseFirst
|
||||
|
@ -1299,7 +1300,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
* then the alternate handling attribute for the Collator is SHIFTED. Otherwise if return value is false, then the
|
||||
* alternate handling attribute for the Collator is NON_IGNORABLE See setAlternateHandlingShifted(boolean) for more
|
||||
* details.
|
||||
*
|
||||
*
|
||||
* @return true or false
|
||||
* @see #setAlternateHandlingShifted(boolean)
|
||||
* @see #setAlternateHandlingDefault
|
||||
|
@ -1311,7 +1312,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Checks if case level is set to true. See setCaseLevel(boolean) for details.
|
||||
*
|
||||
*
|
||||
* @return the case level mode
|
||||
* @see #setCaseLevelDefault
|
||||
* @see #isCaseLevel
|
||||
|
@ -1324,7 +1325,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Checks if French Collation is set to true. See setFrenchCollation(boolean) for details.
|
||||
*
|
||||
*
|
||||
* @return true if French Collation is set to true, false otherwise
|
||||
* @see #setFrenchCollation(boolean)
|
||||
* @see #setFrenchCollationDefault
|
||||
|
@ -1354,7 +1355,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* {@icu} Gets the variable top value of a Collator.
|
||||
*
|
||||
*
|
||||
* @return the variable top primary weight
|
||||
* @see #getMaxVariable
|
||||
* @stable ICU 2.6
|
||||
|
@ -1367,7 +1368,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
/**
|
||||
* Method to retrieve the numeric collation value. When numeric collation is turned on, this Collator generates a
|
||||
* collation key for the numeric value of substrings of digits. This is a way to get '100' to sort AFTER '2'
|
||||
*
|
||||
*
|
||||
* @see #setNumericCollation
|
||||
* @see #setNumericCollationDefault
|
||||
* @return true if numeric collation is turned on, false otherwise
|
||||
|
@ -1377,15 +1378,15 @@ public final class RuleBasedCollator extends Collator {
|
|||
return (settings.readOnly().options & CollationSettings.NUMERIC) != 0;
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* Retrieves the reordering codes for this collator.
|
||||
* These reordering codes are a combination of UScript codes and ReorderCodes.
|
||||
* @return a copy of the reordering codes for this collator;
|
||||
* @return a copy of the reordering codes for this collator;
|
||||
* if none are set then returns an empty array
|
||||
* @see #setReorderCodes
|
||||
* @see Collator#getEquivalentReorderCodes
|
||||
* @stable ICU 4.8
|
||||
*/
|
||||
*/
|
||||
@Override
|
||||
public int[] getReorderCodes() {
|
||||
return settings.readOnly().reorderCodes.clone();
|
||||
|
@ -1435,7 +1436,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Generates a unique hash code for this RuleBasedCollator.
|
||||
*
|
||||
*
|
||||
* @return the unique hash code for this Collator
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -1784,7 +1785,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Get the version of this collator object.
|
||||
*
|
||||
*
|
||||
* @return the version object associated with this collator
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -1799,7 +1800,7 @@ public final class RuleBasedCollator extends Collator {
|
|||
|
||||
/**
|
||||
* Get the UCA version of this collator object.
|
||||
*
|
||||
*
|
||||
* @return the version object associated with this collator
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
@ -1860,11 +1861,10 @@ public final class RuleBasedCollator extends Collator {
|
|||
assert (valid == null) == (actual == null);
|
||||
// Another check we could do is that the actual locale is at
|
||||
// the same level or less specific than the valid locale.
|
||||
// TODO: Starting with Java 7, use Objects.equals(a, b).
|
||||
if(Utility.objectEquals(actual, tailoring.actualLocale)) {
|
||||
if(Objects.equals(actual, tailoring.actualLocale)) {
|
||||
actualLocaleIsSameAsValid = false;
|
||||
} else {
|
||||
assert(Utility.objectEquals(actual, valid));
|
||||
assert(Objects.equals(actual, valid));
|
||||
actualLocaleIsSameAsValid = true;
|
||||
}
|
||||
// Do not modify tailoring.actualLocale:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -109,7 +109,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -19,6 +19,7 @@ import java.nio.ByteBuffer;
|
|||
import java.nio.ByteOrder;
|
||||
import java.nio.channels.FileChannel;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.Set;
|
||||
|
@ -277,7 +278,7 @@ public final class ICUBinary {
|
|||
}
|
||||
}
|
||||
|
||||
private static final List<DataFile> icuDataFiles = new ArrayList<DataFile>();
|
||||
private static final List<DataFile> icuDataFiles = new ArrayList<>();
|
||||
|
||||
static {
|
||||
// Normally com.ibm.icu.impl.ICUBinary.dataPath.
|
||||
|
@ -733,10 +734,7 @@ public final class ICUBinary {
|
|||
} else if (capacity < 0x4000) {
|
||||
capacity *= 2; // Grow faster until we reach 16kB.
|
||||
}
|
||||
// TODO Java 6 replace new byte[] and arraycopy(): bytes = Arrays.copyOf(bytes, capacity);
|
||||
byte[] newBytes = new byte[capacity];
|
||||
System.arraycopy(bytes, 0, newBytes, 0, length);
|
||||
bytes = newBytes;
|
||||
bytes = Arrays.copyOf(bytes, capacity);
|
||||
bytes[length++] = (byte) nextByte;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@ import java.lang.ref.SoftReference;
|
|||
import java.nio.ByteBuffer;
|
||||
import java.nio.CharBuffer;
|
||||
import java.nio.IntBuffer;
|
||||
import java.util.Arrays;
|
||||
|
||||
import com.ibm.icu.util.ICUException;
|
||||
import com.ibm.icu.util.ICUUncheckedIOException;
|
||||
|
@ -1167,7 +1168,7 @@ public final class ICUResourceBundleReader {
|
|||
return value;
|
||||
}
|
||||
values[index] = CacheValue.futureInstancesWillBeStrong() ?
|
||||
item : new SoftReference<Object>(item);
|
||||
item : new SoftReference<>(item);
|
||||
return item;
|
||||
}
|
||||
|
||||
|
@ -1216,7 +1217,7 @@ public final class ICUResourceBundleReader {
|
|||
return level.putIfAbsent(key, item, size);
|
||||
}
|
||||
keys[index] = key;
|
||||
values[index] = storeDirectly(size) ? item : new SoftReference<Object>(item);
|
||||
values[index] = storeDirectly(size) ? item : new SoftReference<>(item);
|
||||
return item;
|
||||
}
|
||||
// Collision: Add a child level, move the old item there,
|
||||
|
@ -1285,29 +1286,7 @@ public final class ICUResourceBundleReader {
|
|||
}
|
||||
|
||||
private int findSimple(int key) {
|
||||
// With Java 6, return Arrays.binarySearch(keys, 0, length, key).
|
||||
int start = 0;
|
||||
int limit = length;
|
||||
while((limit - start) > 8) {
|
||||
int mid = (start + limit) / 2;
|
||||
if(key < keys[mid]) {
|
||||
limit = mid;
|
||||
} else {
|
||||
start = mid;
|
||||
}
|
||||
}
|
||||
// For a small number of items, linear search should be a little faster.
|
||||
while(start < limit) {
|
||||
int k = keys[start];
|
||||
if(key < k) {
|
||||
return ~start;
|
||||
}
|
||||
if(key == k) {
|
||||
return start;
|
||||
}
|
||||
++start;
|
||||
}
|
||||
return ~start;
|
||||
return Arrays.binarySearch(keys, 0, length, key);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
|
@ -1348,7 +1327,7 @@ public final class ICUResourceBundleReader {
|
|||
}
|
||||
++length;
|
||||
keys[index] = res;
|
||||
values[index] = storeDirectly(size) ? item : new SoftReference<Object>(item);
|
||||
values[index] = storeDirectly(size) ? item : new SoftReference<>(item);
|
||||
return item;
|
||||
} else /* not found && length == SIMPLE_LENGTH */ {
|
||||
// Grow to become trie-like.
|
||||
|
|
|
@ -10,8 +10,6 @@ package com.ibm.icu.impl;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectInputStream;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.Date;
|
||||
import java.util.TreeSet;
|
||||
|
||||
|
@ -35,22 +33,13 @@ public class JavaTimeZone extends TimeZone {
|
|||
|
||||
private java.util.TimeZone javatz;
|
||||
private transient java.util.Calendar javacal;
|
||||
private static Method mObservesDaylightTime;
|
||||
|
||||
static {
|
||||
AVAILABLESET = new TreeSet<String>();
|
||||
AVAILABLESET = new TreeSet<>();
|
||||
String[] availableIds = java.util.TimeZone.getAvailableIDs();
|
||||
for (int i = 0; i < availableIds.length; i++) {
|
||||
AVAILABLESET.add(availableIds[i]);
|
||||
}
|
||||
|
||||
try {
|
||||
mObservesDaylightTime = java.util.TimeZone.class.getMethod("observesDaylightTime", (Class[]) null);
|
||||
} catch (NoSuchMethodException e) {
|
||||
// Java 6 or older
|
||||
} catch (SecurityException e) {
|
||||
// not visible
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -198,16 +187,7 @@ public class JavaTimeZone extends TimeZone {
|
|||
*/
|
||||
@Override
|
||||
public boolean observesDaylightTime() {
|
||||
if (mObservesDaylightTime != null) {
|
||||
// Java 7+
|
||||
try {
|
||||
return (Boolean)mObservesDaylightTime.invoke(javatz, (Object[]) null);
|
||||
} catch (IllegalAccessException e) {
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (InvocationTargetException e) {
|
||||
}
|
||||
}
|
||||
return super.observesDaylightTime();
|
||||
return javatz.observesDaylightTime();
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
*/
|
||||
package com.ibm.icu.impl;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.util.Freezable;
|
||||
|
||||
|
||||
|
@ -23,16 +25,16 @@ public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
|
|||
* Convenience Methods
|
||||
*/
|
||||
public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) {
|
||||
return new R2<C0,C1>(p0,p1);
|
||||
return new R2<>(p0,p1);
|
||||
}
|
||||
public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) {
|
||||
return new R3<C0,C1,C2>(p0,p1,p2);
|
||||
return new R3<>(p0,p1,p2);
|
||||
}
|
||||
public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) {
|
||||
return new R4<C0,C1,C2,C3>(p0,p1,p2,p3);
|
||||
return new R4<>(p0,p1,p2,p3);
|
||||
}
|
||||
public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) {
|
||||
return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4);
|
||||
return new R5<>(p0,p1,p2,p3,p4);
|
||||
}
|
||||
|
||||
public static class R2<C0, C1> extends Row<C0, C1, C1, C1, C1> {
|
||||
|
@ -119,7 +121,7 @@ public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
|
|||
}
|
||||
int i = 0;
|
||||
for (Object item : items) {
|
||||
if (!Utility.objectEquals(item, that.items[i++])) {
|
||||
if (!Objects.equals(item, that.items[i++])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1283,7 +1283,6 @@ public final class UCharacterProperty
|
|||
}
|
||||
|
||||
private static final class IsAcceptable implements ICUBinary.Authenticate {
|
||||
// @Override when we switch to Java 6
|
||||
@Override
|
||||
public boolean isDataVersionAcceptable(byte version[]) {
|
||||
return version[0] == 7;
|
||||
|
|
|
@ -68,7 +68,6 @@ public final class UPropertyAliases {
|
|||
private String nameGroups;
|
||||
|
||||
private static final class IsAcceptable implements ICUBinary.Authenticate {
|
||||
// @Override when we switch to Java 6
|
||||
@Override
|
||||
public boolean isDataVersionAcceptable(byte version[]) {
|
||||
return version[0]==2;
|
||||
|
|
|
@ -10,7 +10,6 @@ package com.ibm.icu.impl;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
|
@ -182,15 +181,6 @@ public final class Utility {
|
|||
return a == b;
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience utility. Does null checks on objects, then calls equals.
|
||||
*/
|
||||
public final static boolean objectEquals(Object a, Object b) {
|
||||
return a == null ?
|
||||
b == null ? true : false :
|
||||
b == null ? false : a.equals(b);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience utility. Does null checks on objects, then calls compare.
|
||||
*/
|
||||
|
@ -1085,7 +1075,7 @@ public final class Utility {
|
|||
public static String[] split(String s, char divider) {
|
||||
int last = 0;
|
||||
int i;
|
||||
ArrayList<String> output = new ArrayList<String>();
|
||||
ArrayList<String> output = new ArrayList<>();
|
||||
for (i = 0; i < s.length(); ++i) {
|
||||
if (s.charAt(i) == divider) {
|
||||
output.add(s.substring(last,i));
|
||||
|
@ -1809,46 +1799,6 @@ public final class Utility {
|
|||
return buffer.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* This implementation is equivalent to Java 7+ Objects#equals(Object a, Object b)
|
||||
*
|
||||
* @param a an object
|
||||
* @param b an object to be compared with a for equality
|
||||
* @return true if the arguments are equal to each other and false otherwise
|
||||
*/
|
||||
public static boolean equals(Object a, Object b) {
|
||||
return (a == b)
|
||||
|| (a != null && b != null && a.equals(b));
|
||||
}
|
||||
|
||||
/**
|
||||
* This implementation is equivalent to Java 7+ Objects#hash(Object... values)
|
||||
* @param values the values to be hashed
|
||||
* @return a hash value of the sequence of input values
|
||||
*/
|
||||
public static int hash(Object... values) {
|
||||
return Arrays.hashCode(values);
|
||||
}
|
||||
|
||||
/**
|
||||
* This implementation is equivalent to Java 7+ Objects#hashCode(Object o)
|
||||
* @param o an object
|
||||
* @return a hash value of a non-null argument and 0 for null argument
|
||||
*/
|
||||
public static int hashCode(Object o) {
|
||||
return o == null ? 0 : o.hashCode();
|
||||
}
|
||||
|
||||
/**
|
||||
* This implementation is equivalent to Java 7+ Objects#toString(Object o)
|
||||
* @param o an object
|
||||
* @return the result of calling toStirng for a non-null argument and "null" for a
|
||||
* null argument
|
||||
*/
|
||||
public static String toString(Object o) {
|
||||
return o == null ? "null" : o.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* This implementation is equivalent to Java 8+ Math#addExact(int, int)
|
||||
* @param x the first value
|
||||
|
|
|
@ -8,12 +8,12 @@ import java.util.Enumeration;
|
|||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.TreeMap;
|
||||
|
||||
import com.ibm.icu.impl.ICUData;
|
||||
import com.ibm.icu.impl.ICUResourceBundle;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.HashMultimap;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.Multimap;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.Multimaps;
|
||||
|
@ -45,14 +45,14 @@ public class XLikelySubtags {
|
|||
static final Maker HASHMAP = new Maker() {
|
||||
@Override
|
||||
public Map<Object,Object> make() {
|
||||
return new HashMap<Object,Object>();
|
||||
return new HashMap<>();
|
||||
}
|
||||
};
|
||||
|
||||
static final Maker TREEMAP = new Maker() {
|
||||
@Override
|
||||
public Map<Object,Object> make() {
|
||||
return new TreeMap<Object,Object>();
|
||||
return new TreeMap<>();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ public class XLikelySubtags {
|
|||
UResourceBundle metadata = UResourceBundle.getBundleInstance(ICUData.ICU_BASE_NAME,"metadata",ICUResourceBundle.ICU_DATA_CLASS_LOADER);
|
||||
UResourceBundle metadataAlias = metadata.get("alias");
|
||||
UResourceBundle territoryAlias = metadataAlias.get(key);
|
||||
Map<String, String> toCanonical1 = new HashMap<String, String>();
|
||||
Map<String, String> toCanonical1 = new HashMap<>();
|
||||
for ( int i = 0 ; i < territoryAlias.getSize(); i++ ) {
|
||||
UResourceBundle res = territoryAlias.get(i);
|
||||
String aliasFrom = res.getKey();
|
||||
|
@ -207,7 +207,7 @@ public class XLikelySubtags {
|
|||
}
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Utility.hash(language, script, region);
|
||||
return Objects.hash(language, script, region);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -218,7 +218,7 @@ public class XLikelySubtags {
|
|||
}
|
||||
|
||||
private static Map<String, String> getDefaultRawData() {
|
||||
Map<String, String> rawData = new TreeMap<String, String>();
|
||||
Map<String, String> rawData = new TreeMap<>();
|
||||
UResourceBundle bundle = UResourceBundle.getBundleInstance( ICUData.ICU_BASE_NAME, "likelySubtags");
|
||||
for (Enumeration<String> enumer = bundle.getKeys(); enumer.hasMoreElements();) {
|
||||
String key = enumer.nextElement();
|
||||
|
@ -247,7 +247,7 @@ public class XLikelySubtags {
|
|||
// Splitter bar = Splitter.on('_');
|
||||
// int last = -1;
|
||||
// set the base data
|
||||
Map<LSR,LSR> internCache = new HashMap<LSR,LSR>();
|
||||
Map<LSR,LSR> internCache = new HashMap<>();
|
||||
for (Entry<String, String> sourceTarget : rawData.entrySet()) {
|
||||
LSR ltp = LSR.from(sourceTarget.getKey());
|
||||
final String language = ltp.language;
|
||||
|
@ -483,7 +483,7 @@ public class XLikelySubtags {
|
|||
if (value instanceof Map) {
|
||||
show((Map<?,?>)value, indent+"\t", output);
|
||||
} else {
|
||||
output.append("\t" + Utility.toString(value)).append("\n");
|
||||
output.append("\t" + Objects.toString(value)).append("\n");
|
||||
}
|
||||
first = indent;
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@ import java.util.LinkedHashSet;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.TreeMap;
|
||||
import java.util.TreeSet;
|
||||
|
@ -21,7 +22,6 @@ import java.util.TreeSet;
|
|||
import com.ibm.icu.impl.ICUResourceBundle;
|
||||
import com.ibm.icu.impl.Row;
|
||||
import com.ibm.icu.impl.Row.R4;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.CollectionUtilities;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.ImmutableMap;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.ImmutableMultimap;
|
||||
|
@ -56,7 +56,7 @@ public class XLocaleDistance {
|
|||
static final LocaleDisplayNames english = LocaleDisplayNames.getInstance(ULocale.ENGLISH);
|
||||
|
||||
private static List<R4<String, String, Integer, Boolean>> xGetLanguageMatcherData() {
|
||||
List<R4<String, String, Integer, Boolean>> distanceList = new ArrayList<R4<String, String, Integer, Boolean>>();
|
||||
List<R4<String, String, Integer, Boolean>> distanceList = new ArrayList<>();
|
||||
|
||||
ICUResourceBundle suppData = LocaleMatcher.getICUSupplementalData();
|
||||
ICUResourceBundle languageMatchingNew = suppData.findTopLevel("languageMatchingNew");
|
||||
|
@ -84,7 +84,7 @@ public class XLocaleDistance {
|
|||
ICUResourceBundle writtenParadigmLocales = (ICUResourceBundle) languageMatchingInfo.get("written")
|
||||
.get("paradigmLocales");
|
||||
// paradigmLocales{ "en", "en-GB",... }
|
||||
HashSet<String> paradigmLocales = new HashSet<String>(Arrays.asList(writtenParadigmLocales.getStringArray()));
|
||||
HashSet<String> paradigmLocales = new HashSet<>(Arrays.asList(writtenParadigmLocales.getStringArray()));
|
||||
return Collections.unmodifiableSet(paradigmLocales);
|
||||
}
|
||||
|
||||
|
@ -96,7 +96,7 @@ public class XLocaleDistance {
|
|||
.get("matchVariable");
|
||||
// matchVariable{ americas{"019"} cnsar{"HK+MO"} ...}
|
||||
|
||||
HashMap<String,String> matchVariables = new HashMap<String,String>();
|
||||
HashMap<String,String> matchVariables = new HashMap<>();
|
||||
for (Enumeration<String> enumer = writtenMatchVariables.getKeys(); enumer.hasMoreElements(); ) {
|
||||
String key = enumer.nextElement();
|
||||
matchVariables.put(key, writtenMatchVariables.getString(key));
|
||||
|
@ -255,8 +255,8 @@ public class XLocaleDistance {
|
|||
}
|
||||
|
||||
static class IdMakerFull<T> implements IdMapper<T,Integer> {
|
||||
private final Map<T, Integer> objectToInt = new HashMap<T, Integer>();
|
||||
private final List<T> intToObject = new ArrayList<T>();
|
||||
private final Map<T, Integer> objectToInt = new HashMap<>();
|
||||
private final List<T> intToObject = new ArrayList<>();
|
||||
final String name; // for debugging
|
||||
|
||||
IdMakerFull(String name) {
|
||||
|
@ -358,12 +358,12 @@ public class XLocaleDistance {
|
|||
(obj != null
|
||||
&& obj.getClass() == this.getClass()
|
||||
&& distance == (other = (StringDistanceNode) obj).distance
|
||||
&& Utility.equals(distanceTable, other.distanceTable)
|
||||
&& Objects.equals(distanceTable, other.distanceTable)
|
||||
&& super.equals(other));
|
||||
}
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return distance ^ Utility.hashCode(distanceTable);
|
||||
return distance ^ Objects.hashCode(distanceTable);
|
||||
}
|
||||
|
||||
StringDistanceNode(int distance) {
|
||||
|
@ -511,7 +511,7 @@ public class XLocaleDistance {
|
|||
DistanceNode node = getNode(desired, supported);
|
||||
if (node == null) {
|
||||
// get the distance it would have
|
||||
Output<DistanceTable> node2 = new Output<DistanceTable>();
|
||||
Output<DistanceTable> node2 = new Output<>();
|
||||
int distance = getDistance(desired, supported, node2, true);
|
||||
// now add it
|
||||
node = addSubtable(desired, supported, distance);
|
||||
|
@ -589,7 +589,7 @@ public class XLocaleDistance {
|
|||
|
||||
@Override
|
||||
public String toString(boolean abbreviate) {
|
||||
return toString(abbreviate, "", new IdMakerFull<Object>("interner"), new StringBuilder()).toString();
|
||||
return toString(abbreviate, "", new IdMakerFull<>("interner"), new StringBuilder()).toString();
|
||||
}
|
||||
|
||||
public StringBuilder toString(boolean abbreviate, String indent, IdMakerFull<Object> intern, StringBuilder buffer) {
|
||||
|
@ -638,7 +638,7 @@ public class XLocaleDistance {
|
|||
|
||||
@Override
|
||||
public Set<String> getCloser(int threshold) {
|
||||
Set<String> result = new HashSet<String>();
|
||||
Set<String> result = new HashSet<>();
|
||||
for (Entry<String, Map<String, DistanceNode>> e1 : subtables.entrySet()) {
|
||||
String desired = e1.getKey();
|
||||
for (Entry<String, DistanceNode> e2 : e1.getValue().entrySet()) {
|
||||
|
@ -671,9 +671,9 @@ public class XLocaleDistance {
|
|||
|
||||
@Override
|
||||
public Map<String, Set<String>> getInternalMatches() {
|
||||
Map<String, Set<String>> result = new LinkedHashMap<String, Set<String>>();
|
||||
Map<String, Set<String>> result = new LinkedHashMap<>();
|
||||
for (Entry<String, Map<String, DistanceNode>> entry : subtables.entrySet()) {
|
||||
result.put(entry.getKey(), new LinkedHashSet<String>(entry.getValue().keySet()));
|
||||
result.put(entry.getKey(), new LinkedHashSet<>(entry.getValue().keySet()));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -745,7 +745,7 @@ public class XLocaleDistance {
|
|||
int threshold,
|
||||
DistanceOption distanceOption) {
|
||||
|
||||
Output<DistanceTable> subtable = new Output<DistanceTable>();
|
||||
Output<DistanceTable> subtable = new Output<>();
|
||||
|
||||
int distance = languageDesired2Supported.getDistance(desiredLang, supportedLang, subtable, true);
|
||||
boolean scriptFirst = distanceOption == DistanceOption.SCRIPT_FIRST;
|
||||
|
@ -874,9 +874,9 @@ public class XLocaleDistance {
|
|||
|
||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||
List<Row.R4<List<String>, List<String>, Integer, Boolean>>[] sorted = new ArrayList[3];
|
||||
sorted[0] = new ArrayList<Row.R4<List<String>, List<String>, Integer, Boolean>>();
|
||||
sorted[1] = new ArrayList<Row.R4<List<String>, List<String>, Integer, Boolean>>();
|
||||
sorted[2] = new ArrayList<Row.R4<List<String>, List<String>, Integer, Boolean>>();
|
||||
sorted[0] = new ArrayList<>();
|
||||
sorted[1] = new ArrayList<>();
|
||||
sorted[2] = new ArrayList<>();
|
||||
|
||||
// sort the rules so that the language-only are first, then the language-script, and finally the language-script-region.
|
||||
for (R4<String, String, Integer, Boolean> info : xGetLanguageMatcherData()) {
|
||||
|
@ -920,8 +920,8 @@ public class XLocaleDistance {
|
|||
// if (rule[0].equals("en_*_*") || rule[1].equals("*_*_*")) {
|
||||
// int debug = 0;
|
||||
// }
|
||||
List<String> desiredBase = new ArrayList<String>(bar.splitToList(rule[0]));
|
||||
List<String> supportedBase = new ArrayList<String>(bar.splitToList(rule[1]));
|
||||
List<String> desiredBase = new ArrayList<>(bar.splitToList(rule[0]));
|
||||
List<String> supportedBase = new ArrayList<>(bar.splitToList(rule[1]));
|
||||
Integer distance = 100-Integer.parseInt(rule[2]);
|
||||
printMatchXml(desiredBase, supportedBase, distance, false);
|
||||
|
||||
|
@ -971,7 +971,7 @@ public class XLocaleDistance {
|
|||
}
|
||||
|
||||
private static String fixedName(List<String> match) {
|
||||
List<String> alt = new ArrayList<String>(match);
|
||||
List<String> alt = new ArrayList<>(match);
|
||||
int size = alt.size();
|
||||
assert size >= 1 && size <= 3;
|
||||
|
||||
|
@ -1132,7 +1132,7 @@ public class XLocaleDistance {
|
|||
static class Builder {
|
||||
final private Multimap<String, String> regionToRawPartition = TreeMultimap.create();
|
||||
final private RegionSet regionSet = new RegionSet();
|
||||
final private Set<ULocale> paradigms = new LinkedHashSet<ULocale>();
|
||||
final private Set<ULocale> paradigms = new LinkedHashSet<>();
|
||||
|
||||
void add(String variable, String barString) {
|
||||
Set<String> tempRegions = regionSet.parseSet(barString);
|
||||
|
@ -1158,9 +1158,9 @@ public class XLocaleDistance {
|
|||
}
|
||||
|
||||
RegionMapper build() {
|
||||
final IdMakerFull<Collection<String>> id = new IdMakerFull<Collection<String>>("partition");
|
||||
final IdMakerFull<Collection<String>> id = new IdMakerFull<>("partition");
|
||||
Multimap<String,String> variableToPartitions = TreeMultimap.create();
|
||||
Map<String,String> regionToPartition = new TreeMap<String,String>();
|
||||
Map<String,String> regionToPartition = new TreeMap<>();
|
||||
Multimap<String,String> partitionToRegions = TreeMultimap.create();
|
||||
|
||||
for (Entry<String, Set<String>> e : regionToRawPartition.asMap().entrySet()) {
|
||||
|
@ -1207,7 +1207,7 @@ public class XLocaleDistance {
|
|||
private static class RegionSet {
|
||||
private enum Operation {add, remove}
|
||||
// temporaries used in processing
|
||||
final private Set<String> tempRegions = new TreeSet<String>();
|
||||
final private Set<String> tempRegions = new TreeSet<>();
|
||||
private Operation operation = null;
|
||||
|
||||
private Set<String> parseSet(String barString) {
|
||||
|
@ -1235,7 +1235,7 @@ public class XLocaleDistance {
|
|||
}
|
||||
|
||||
private Set<String> inverse() {
|
||||
TreeSet<String> result = new TreeSet<String>(ALL_FINAL_REGIONS);
|
||||
TreeSet<String> result = new TreeSet<>(ALL_FINAL_REGIONS);
|
||||
result.removeAll(tempRegions);
|
||||
return result;
|
||||
}
|
||||
|
@ -1295,7 +1295,7 @@ public class XLocaleDistance {
|
|||
if (toId(item) != null) {
|
||||
return (Map<K, T>) intern(item);
|
||||
}
|
||||
Map<K,T> copy = new LinkedHashMap<K,T>();
|
||||
Map<K,T> copy = new LinkedHashMap<>();
|
||||
for (Entry<K,T> entry : item.entrySet()) {
|
||||
T value = entry.getValue();
|
||||
if (value instanceof Map) {
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
package com.ibm.icu.impl.number;
|
||||
|
||||
import java.math.RoundingMode;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.number.IntegerWidth;
|
||||
import com.ibm.icu.number.Notation;
|
||||
import com.ibm.icu.number.NumberFormatter.DecimalSeparatorDisplay;
|
||||
|
@ -78,7 +78,7 @@ public class MacroProps implements Cloneable {
|
|||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Utility.hash(notation,
|
||||
return Objects.hash(notation,
|
||||
unit,
|
||||
perUnit,
|
||||
precision,
|
||||
|
@ -105,22 +105,22 @@ public class MacroProps implements Cloneable {
|
|||
if (!(_other instanceof MacroProps))
|
||||
return false;
|
||||
MacroProps other = (MacroProps) _other;
|
||||
return Utility.equals(notation, other.notation)
|
||||
&& Utility.equals(unit, other.unit)
|
||||
&& Utility.equals(perUnit, other.perUnit)
|
||||
&& Utility.equals(precision, other.precision)
|
||||
&& Utility.equals(roundingMode, other.roundingMode)
|
||||
&& Utility.equals(grouping, other.grouping)
|
||||
&& Utility.equals(padder, other.padder)
|
||||
&& Utility.equals(integerWidth, other.integerWidth)
|
||||
&& Utility.equals(symbols, other.symbols)
|
||||
&& Utility.equals(unitWidth, other.unitWidth)
|
||||
&& Utility.equals(sign, other.sign)
|
||||
&& Utility.equals(decimal, other.decimal)
|
||||
&& Utility.equals(affixProvider, other.affixProvider)
|
||||
&& Utility.equals(scale, other.scale)
|
||||
&& Utility.equals(rules, other.rules)
|
||||
&& Utility.equals(loc, other.loc);
|
||||
return Objects.equals(notation, other.notation)
|
||||
&& Objects.equals(unit, other.unit)
|
||||
&& Objects.equals(perUnit, other.perUnit)
|
||||
&& Objects.equals(precision, other.precision)
|
||||
&& Objects.equals(roundingMode, other.roundingMode)
|
||||
&& Objects.equals(grouping, other.grouping)
|
||||
&& Objects.equals(padder, other.padder)
|
||||
&& Objects.equals(integerWidth, other.integerWidth)
|
||||
&& Objects.equals(symbols, other.symbols)
|
||||
&& Objects.equals(unitWidth, other.unitWidth)
|
||||
&& Objects.equals(sign, other.sign)
|
||||
&& Objects.equals(decimal, other.decimal)
|
||||
&& Objects.equals(affixProvider, other.affixProvider)
|
||||
&& Objects.equals(scale, other.scale)
|
||||
&& Objects.equals(rules, other.rules)
|
||||
&& Objects.equals(loc, other.loc);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,10 +5,10 @@ package com.ibm.icu.impl.number.parse;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.impl.StandardPlural;
|
||||
import com.ibm.icu.impl.StringSegment;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.number.AffixPatternProvider;
|
||||
import com.ibm.icu.impl.number.AffixUtils;
|
||||
import com.ibm.icu.impl.number.PatternStringUtils;
|
||||
|
@ -88,7 +88,7 @@ public class AffixMatcher implements NumberParseMatcher {
|
|||
// The affixes have interesting characters, or we are in strict mode.
|
||||
// Use initial capacity of 6, the highest possible number of AffixMatchers.
|
||||
StringBuilder sb = new StringBuilder();
|
||||
ArrayList<AffixMatcher> matchers = new ArrayList<AffixMatcher>(6);
|
||||
ArrayList<AffixMatcher> matchers = new ArrayList<>(6);
|
||||
boolean includeUnpaired = 0 != (parseFlags & ParsingUtils.PARSE_FLAG_INCLUDE_UNPAIRED_AFFIXES);
|
||||
SignDisplay signDisplay = (0 != (parseFlags & ParsingUtils.PARSE_FLAG_PLUS_SIGN_ALLOWED))
|
||||
? SignDisplay.ALWAYS
|
||||
|
@ -124,7 +124,7 @@ public class AffixMatcher implements NumberParseMatcher {
|
|||
if (signum == 1) {
|
||||
posPrefix = prefix;
|
||||
posSuffix = suffix;
|
||||
} else if (Utility.equals(prefix, posPrefix) && Utility.equals(suffix, posSuffix)) {
|
||||
} else if (Objects.equals(prefix, posPrefix) && Objects.equals(suffix, posSuffix)) {
|
||||
// Skip adding these matchers (we already have equivalents)
|
||||
continue;
|
||||
}
|
||||
|
@ -137,10 +137,10 @@ public class AffixMatcher implements NumberParseMatcher {
|
|||
matchers.add(getInstance(prefix, suffix, flags));
|
||||
if (includeUnpaired && prefix != null && suffix != null) {
|
||||
// The following if statements are designed to prevent adding two identical matchers.
|
||||
if (signum == 1 || !Utility.equals(prefix, posPrefix)) {
|
||||
if (signum == 1 || !Objects.equals(prefix, posPrefix)) {
|
||||
matchers.add(getInstance(prefix, null, flags));
|
||||
}
|
||||
if (signum == 1 || !Utility.equals(suffix, posSuffix)) {
|
||||
if (signum == 1 || !Objects.equals(suffix, posSuffix)) {
|
||||
matchers.add(getInstance(null, suffix, flags));
|
||||
}
|
||||
}
|
||||
|
@ -255,14 +255,14 @@ public class AffixMatcher implements NumberParseMatcher {
|
|||
return false;
|
||||
}
|
||||
AffixMatcher other = (AffixMatcher) _other;
|
||||
return Utility.equals(prefix, other.prefix)
|
||||
&& Utility.equals(suffix, other.suffix)
|
||||
return Objects.equals(prefix, other.prefix)
|
||||
&& Objects.equals(suffix, other.suffix)
|
||||
&& flags == other.flags;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Utility.hashCode(prefix) ^ Utility.hashCode(suffix) ^ flags;
|
||||
return Objects.hashCode(prefix) ^ Objects.hashCode(suffix) ^ flags;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -4,10 +4,10 @@ package com.ibm.icu.number;
|
|||
|
||||
import java.math.BigInteger;
|
||||
import java.text.Format;
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.atomic.AtomicLongFieldUpdater;
|
||||
|
||||
import com.ibm.icu.impl.StandardPlural;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.number.DecimalQuantity;
|
||||
import com.ibm.icu.impl.number.DecimalQuantity_DualStorageBCD;
|
||||
import com.ibm.icu.impl.number.LocalizedNumberFormatterAsFormat;
|
||||
|
@ -103,13 +103,13 @@ public class LocalizedNumberFormatter extends NumberFormatterSettings<LocalizedN
|
|||
MeasureUnit unit = input.getUnit();
|
||||
Number number = input.getNumber();
|
||||
// Use this formatter if possible
|
||||
if (Utility.equals(resolve().unit, unit)) {
|
||||
if (Objects.equals(resolve().unit, unit)) {
|
||||
return format(number);
|
||||
}
|
||||
// This mechanism saves the previously used unit, so if the user calls this method with the
|
||||
// same unit multiple times in a row, they get a more efficient code path.
|
||||
LocalizedNumberFormatter withUnit = savedWithUnit;
|
||||
if (withUnit == null || !Utility.equals(withUnit.resolve().unit, unit)) {
|
||||
if (withUnit == null || !Objects.equals(withUnit.resolve().unit, unit)) {
|
||||
withUnit = new LocalizedNumberFormatter(this, KEY_UNIT, unit);
|
||||
savedWithUnit = withUnit;
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ import java.util.Locale;
|
|||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
import com.ibm.icu.impl.ICUCache;
|
||||
|
@ -27,7 +28,6 @@ import com.ibm.icu.impl.SimpleCache;
|
|||
import com.ibm.icu.impl.UResource;
|
||||
import com.ibm.icu.impl.UResource.Key;
|
||||
import com.ibm.icu.impl.UResource.Value;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.util.Calendar;
|
||||
import com.ibm.icu.util.Freezable;
|
||||
import com.ibm.icu.util.ICUCloneNotSupportedException;
|
||||
|
@ -247,8 +247,8 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
public boolean equals(Object a) {
|
||||
if (a instanceof PatternInfo) {
|
||||
PatternInfo patternInfo = (PatternInfo)a;
|
||||
return Utility.objectEquals(fIntervalPatternFirstPart, patternInfo.fIntervalPatternFirstPart) &&
|
||||
Utility.objectEquals(fIntervalPatternSecondPart, patternInfo.fIntervalPatternSecondPart) &&
|
||||
return Objects.equals(fIntervalPatternFirstPart, patternInfo.fIntervalPatternFirstPart) &&
|
||||
Objects.equals(fIntervalPatternSecondPart, patternInfo.fIntervalPatternSecondPart) &&
|
||||
fFirstDateInPtnIsLaterDate == patternInfo.fFirstDateInPtnIsLaterDate;
|
||||
}
|
||||
return false;
|
||||
|
@ -310,7 +310,7 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
private static String EARLIEST_FIRST_PREFIX = "earliestFirst:";
|
||||
|
||||
// DateIntervalInfo cache
|
||||
private final static ICUCache<String, DateIntervalInfo> DIICACHE = new SimpleCache<String, DateIntervalInfo>();
|
||||
private final static ICUCache<String, DateIntervalInfo> DIICACHE = new SimpleCache<>();
|
||||
|
||||
|
||||
// default interval pattern on the skeleton, {0} - {1}
|
||||
|
@ -347,7 +347,7 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
@Deprecated
|
||||
public DateIntervalInfo()
|
||||
{
|
||||
fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>();
|
||||
fIntervalPatterns = new HashMap<>();
|
||||
fFallbackIntervalPattern = "{0} \u2013 {1}";
|
||||
}
|
||||
|
||||
|
@ -570,7 +570,7 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
*/
|
||||
private void setup(ULocale locale) {
|
||||
int DEFAULT_HASH_SIZE = 19;
|
||||
fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>(DEFAULT_HASH_SIZE);
|
||||
fIntervalPatterns = new HashMap<>(DEFAULT_HASH_SIZE);
|
||||
// initialize to guard if there is no interval date format defined in
|
||||
// resource files
|
||||
fFallbackIntervalPattern = "{0} \u2013 {1}";
|
||||
|
@ -598,7 +598,7 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
setFallbackIntervalPattern(fallbackPattern);
|
||||
|
||||
// Already loaded calendar types
|
||||
Set<String> loadedCalendarTypes = new HashSet<String>();
|
||||
Set<String> loadedCalendarTypes = new HashSet<>();
|
||||
|
||||
while (calendarTypeToUse != null) {
|
||||
// Throw an exception when a loop is detected
|
||||
|
@ -776,7 +776,7 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
Map<String, PatternInfo> patternsOfOneSkeleton = fIntervalPatterns.get(skeleton);
|
||||
boolean emptyHash = false;
|
||||
if (patternsOfOneSkeleton == null) {
|
||||
patternsOfOneSkeleton = new HashMap<String, PatternInfo>();
|
||||
patternsOfOneSkeleton = new HashMap<>();
|
||||
emptyHash = true;
|
||||
}
|
||||
boolean order = fFirstDateInPtnIsLaterDate;
|
||||
|
@ -968,11 +968,11 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
|
||||
private static Map<String, Map<String, PatternInfo>> cloneIntervalPatterns(
|
||||
Map<String, Map<String, PatternInfo>> patterns) {
|
||||
Map<String, Map<String, PatternInfo>> result = new HashMap<String, Map<String, PatternInfo>>();
|
||||
Map<String, Map<String, PatternInfo>> result = new HashMap<>();
|
||||
for (Entry<String, Map<String, PatternInfo>> skeletonEntry : patterns.entrySet()) {
|
||||
String skeleton = skeletonEntry.getKey();
|
||||
Map<String, PatternInfo> patternsOfOneSkeleton = skeletonEntry.getValue();
|
||||
Map<String, PatternInfo> oneSetPtn = new HashMap<String, PatternInfo>();
|
||||
Map<String, PatternInfo> oneSetPtn = new HashMap<>();
|
||||
for (Entry<String, PatternInfo> calEntry : patternsOfOneSkeleton.entrySet()) {
|
||||
String calField = calEntry.getKey();
|
||||
PatternInfo value = calEntry.getValue();
|
||||
|
@ -1170,9 +1170,9 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
*/
|
||||
@Deprecated
|
||||
public Map<String,Set<String>> getPatterns() {
|
||||
LinkedHashMap<String,Set<String>> result = new LinkedHashMap<String,Set<String>>();
|
||||
LinkedHashMap<String,Set<String>> result = new LinkedHashMap<>();
|
||||
for (Entry<String, Map<String, PatternInfo>> entry : fIntervalPatterns.entrySet()) {
|
||||
result.put(entry.getKey(), new LinkedHashSet<String>(entry.getValue().keySet()));
|
||||
result.put(entry.getKey(), new LinkedHashSet<>(entry.getValue().keySet()));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -1184,9 +1184,9 @@ public class DateIntervalInfo implements Cloneable, Freezable<DateIntervalInfo>,
|
|||
*/
|
||||
@Deprecated
|
||||
public Map<String, Map<String, PatternInfo>> getRawPatterns() {
|
||||
LinkedHashMap<String, Map<String, PatternInfo>> result = new LinkedHashMap<String, Map<String, PatternInfo>>();
|
||||
LinkedHashMap<String, Map<String, PatternInfo>> result = new LinkedHashMap<>();
|
||||
for (Entry<String, Map<String, PatternInfo>> entry : fIntervalPatterns.entrySet()) {
|
||||
result.put(entry.getKey(), new LinkedHashMap<String, PatternInfo>(entry.getValue()));
|
||||
result.put(entry.getKey(), new LinkedHashMap<>(entry.getValue()));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
|
@ -32,10 +32,10 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
import com.ibm.icu.impl.PatternProps;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.number.NumberFormatter;
|
||||
import com.ibm.icu.text.MessagePattern.ArgType;
|
||||
import com.ibm.icu.text.MessagePattern.Part;
|
||||
|
@ -791,7 +791,7 @@ public class MessageFormat extends UFormat {
|
|||
"This method is not available in MessageFormat objects " +
|
||||
"that use alphanumeric argument names.");
|
||||
}
|
||||
ArrayList<Format> list = new ArrayList<Format>();
|
||||
ArrayList<Format> list = new ArrayList<>();
|
||||
for (int partIndex = 0; (partIndex = nextTopLevelArgStart(partIndex)) >= 0;) {
|
||||
int argNumber = msgPattern.getPart(partIndex + 1).getValue();
|
||||
while (argNumber >= list.size()) {
|
||||
|
@ -824,7 +824,7 @@ public class MessageFormat extends UFormat {
|
|||
* @stable ICU 3.0
|
||||
*/
|
||||
public Format[] getFormats() {
|
||||
ArrayList<Format> list = new ArrayList<Format>();
|
||||
ArrayList<Format> list = new ArrayList<>();
|
||||
for (int partIndex = 0; (partIndex = nextTopLevelArgStart(partIndex)) >= 0;) {
|
||||
list.add(cachedFormatters == null ? null : cachedFormatters.get(partIndex));
|
||||
}
|
||||
|
@ -838,7 +838,7 @@ public class MessageFormat extends UFormat {
|
|||
* @stable ICU 4.8
|
||||
*/
|
||||
public Set<String> getArgumentNames() {
|
||||
Set<String> result = new HashSet<String>();
|
||||
Set<String> result = new HashSet<>();
|
||||
for (int partIndex = 0; (partIndex = nextTopLevelArgStart(partIndex)) >= 0;) {
|
||||
result.add(getArgName(partIndex + 1));
|
||||
}
|
||||
|
@ -1185,7 +1185,7 @@ public class MessageFormat extends UFormat {
|
|||
* @stable ICU 3.8
|
||||
*/
|
||||
public Map<String, Object> parseToMap(String source, ParsePosition pos) {
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
int backupStartPos = pos.getIndex();
|
||||
parse(0, source, pos, null, result);
|
||||
if (pos.getIndex() == backupStartPos) {
|
||||
|
@ -1372,7 +1372,7 @@ public class MessageFormat extends UFormat {
|
|||
*/
|
||||
public Map<String, Object> parseToMap(String source) throws ParseException {
|
||||
ParsePosition pos = new ParsePosition(0);
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
parse(0, source, pos, null, result);
|
||||
if (pos.getIndex() == 0) // unchanged, returned object is null
|
||||
throw new ParseException("MessageFormat parse error!",
|
||||
|
@ -1426,7 +1426,7 @@ public class MessageFormat extends UFormat {
|
|||
MessageFormat other = (MessageFormat) super.clone();
|
||||
|
||||
if (customFormatArgStarts != null) {
|
||||
other.customFormatArgStarts = new HashSet<Integer>();
|
||||
other.customFormatArgStarts = new HashSet<>();
|
||||
for (Integer key : customFormatArgStarts) {
|
||||
other.customFormatArgStarts.add(key);
|
||||
}
|
||||
|
@ -1435,7 +1435,7 @@ public class MessageFormat extends UFormat {
|
|||
}
|
||||
|
||||
if (cachedFormatters != null) {
|
||||
other.cachedFormatters = new HashMap<Integer, Format>();
|
||||
other.cachedFormatters = new HashMap<>();
|
||||
Iterator<Map.Entry<Integer, Format>> it = cachedFormatters.entrySet().iterator();
|
||||
while (it.hasNext()){
|
||||
Map.Entry<Integer, Format> entry = it.next();
|
||||
|
@ -1467,10 +1467,10 @@ public class MessageFormat extends UFormat {
|
|||
if (obj == null || getClass() != obj.getClass())
|
||||
return false;
|
||||
MessageFormat other = (MessageFormat) obj;
|
||||
return Utility.objectEquals(ulocale, other.ulocale)
|
||||
&& Utility.objectEquals(msgPattern, other.msgPattern)
|
||||
&& Utility.objectEquals(cachedFormatters, other.cachedFormatters)
|
||||
&& Utility.objectEquals(customFormatArgStarts, other.customFormatArgStarts);
|
||||
return Objects.equals(ulocale, other.ulocale)
|
||||
&& Objects.equals(msgPattern, other.msgPattern)
|
||||
&& Objects.equals(cachedFormatters, other.cachedFormatters)
|
||||
&& Objects.equals(customFormatArgStarts, other.customFormatArgStarts);
|
||||
// Note: It might suffice to only compare custom formatters
|
||||
// rather than all formatters.
|
||||
}
|
||||
|
@ -2439,7 +2439,7 @@ public class MessageFormat extends UFormat {
|
|||
*/
|
||||
private void setArgStartFormat(int argStart, Format formatter) {
|
||||
if (cachedFormatters == null) {
|
||||
cachedFormatters = new HashMap<Integer, Format>();
|
||||
cachedFormatters = new HashMap<>();
|
||||
}
|
||||
cachedFormatters.put(argStart, formatter);
|
||||
}
|
||||
|
@ -2451,7 +2451,7 @@ public class MessageFormat extends UFormat {
|
|||
private void setCustomArgStartFormat(int argStart, Format formatter) {
|
||||
setArgStartFormat(argStart, formatter);
|
||||
if (customFormatArgStarts == null) {
|
||||
customFormatArgStarts = new HashSet<Integer>();
|
||||
customFormatArgStarts = new HashSet<>();
|
||||
}
|
||||
customFormatArgStarts.add(argStart);
|
||||
}
|
||||
|
@ -2578,7 +2578,7 @@ public class MessageFormat extends UFormat {
|
|||
}
|
||||
|
||||
public void useAttributes() {
|
||||
attributes = new ArrayList<AttributeAndPosition>();
|
||||
attributes = new ArrayList<>();
|
||||
}
|
||||
|
||||
public void append(CharSequence s) {
|
||||
|
|
|
@ -11,9 +11,9 @@ package com.ibm.icu.text;
|
|||
import java.text.FieldPosition;
|
||||
import java.text.ParsePosition;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.impl.PatternProps;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
|
||||
/**
|
||||
* A class representing a single rule in a RuleBasedNumberFormat. A rule
|
||||
|
@ -610,6 +610,7 @@ final class NFRule {
|
|||
* @param that The rule to compare this one against
|
||||
* @return True if the two rules are functionally equivalent
|
||||
*/
|
||||
@Override
|
||||
public boolean equals(Object that) {
|
||||
if (that instanceof NFRule) {
|
||||
NFRule that2 = (NFRule)that;
|
||||
|
@ -618,12 +619,13 @@ final class NFRule {
|
|||
&& radix == that2.radix
|
||||
&& exponent == that2.exponent
|
||||
&& ruleText.equals(that2.ruleText)
|
||||
&& Utility.objectEquals(sub1, that2.sub1)
|
||||
&& Utility.objectEquals(sub2, that2.sub2);
|
||||
&& Objects.equals(sub1, that2.sub1)
|
||||
&& Objects.equals(sub2, that2.sub2);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
assert false : "hashCode not designed";
|
||||
return 42;
|
||||
|
@ -635,6 +637,7 @@ final class NFRule {
|
|||
* was created with, but it will produce the same result.
|
||||
* @return A textual description of the rule
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder result = new StringBuilder();
|
||||
|
||||
|
|
|
@ -12,9 +12,9 @@ import java.text.ParsePosition;
|
|||
import java.util.ArrayList;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.impl.PatternProps;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
|
||||
/**
|
||||
* A collection of rules used by a RuleBasedNumberFormat to format and
|
||||
|
@ -160,7 +160,7 @@ final class NFRuleSet {
|
|||
public void parseRules(String description) {
|
||||
// (the number of elements in the description list isn't necessarily
|
||||
// the number of rules-- some descriptions may expend into two rules)
|
||||
List<NFRule> tempRules = new ArrayList<NFRule>();
|
||||
List<NFRule> tempRules = new ArrayList<>();
|
||||
|
||||
// we keep track of the rule before the one we're currently working
|
||||
// on solely to support >>> substitutions
|
||||
|
@ -264,7 +264,7 @@ final class NFRuleSet {
|
|||
private void setBestFractionRule(int originalIndex, NFRule newRule, boolean rememberRule) {
|
||||
if (rememberRule) {
|
||||
if (fractionRules == null) {
|
||||
fractionRules = new LinkedList<NFRule>();
|
||||
fractionRules = new LinkedList<>();
|
||||
}
|
||||
fractionRules.add(newRule);
|
||||
}
|
||||
|
@ -303,6 +303,7 @@ final class NFRuleSet {
|
|||
* @param that The other rule set
|
||||
* @return true if the two rule sets are functionally equivalent.
|
||||
*/
|
||||
@Override
|
||||
public boolean equals(Object that) {
|
||||
// if different classes, they're not equal
|
||||
if (!(that instanceof NFRuleSet)) {
|
||||
|
@ -320,7 +321,7 @@ final class NFRuleSet {
|
|||
|
||||
// ...then compare the non-numerical rule lists...
|
||||
for (int i = 0; i < nonNumericalRules.length; i++) {
|
||||
if (!Utility.objectEquals(nonNumericalRules[i], that2.nonNumericalRules[i])) {
|
||||
if (!Objects.equals(nonNumericalRules[i], that2.nonNumericalRules[i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -337,6 +338,7 @@ final class NFRuleSet {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
assert false : "hashCode not designed";
|
||||
return 42;
|
||||
|
@ -349,6 +351,7 @@ final class NFRuleSet {
|
|||
* necessarily be the same description that the rule set was
|
||||
* constructed with, but it will produce the same results.
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder result = new StringBuilder();
|
||||
|
||||
|
|
|
@ -15,8 +15,8 @@ import java.text.FieldPosition;
|
|||
import java.text.ParsePosition;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.number.FormattedNumber;
|
||||
import com.ibm.icu.number.LocalizedNumberFormatter;
|
||||
import com.ibm.icu.text.PluralRules.FixedDecimal;
|
||||
|
@ -834,10 +834,10 @@ public class PluralFormat extends UFormat {
|
|||
}
|
||||
PluralFormat pf = (PluralFormat)rhs;
|
||||
return
|
||||
Utility.objectEquals(ulocale, pf.ulocale) &&
|
||||
Utility.objectEquals(pluralRules, pf.pluralRules) &&
|
||||
Utility.objectEquals(msgPattern, pf.msgPattern) &&
|
||||
Utility.objectEquals(numberFormat, pf.numberFormat);
|
||||
Objects.equals(ulocale, pf.ulocale) &&
|
||||
Objects.equals(pluralRules, pf.pluralRules) &&
|
||||
Objects.equals(msgPattern, pf.msgPattern) &&
|
||||
Objects.equals(numberFormat, pf.numberFormat);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -64,7 +64,7 @@ public class Currency extends MeasureUnit {
|
|||
|
||||
// Cache to save currency name trie
|
||||
private static ICUCache<ULocale, List<TextTrieMap<CurrencyStringInfo>>> CURRENCY_NAME_CACHE =
|
||||
new SimpleCache<ULocale, List<TextTrieMap<CurrencyStringInfo>>>();
|
||||
new SimpleCache<>();
|
||||
|
||||
/**
|
||||
* Selector for getName() indicating a symbolic name for a
|
||||
|
@ -229,7 +229,7 @@ public class Currency extends MeasureUnit {
|
|||
public static Set<Currency> getAvailableCurrencies() {
|
||||
CurrencyMetaInfo info = CurrencyMetaInfo.getInstance();
|
||||
List<String> list = info.currencies(CurrencyFilter.all());
|
||||
HashSet<Currency> resultSet = new HashSet<Currency>(list.size());
|
||||
HashSet<Currency> resultSet = new HashSet<>(list.size());
|
||||
for (String code : list) {
|
||||
resultSet.add(getInstance(code));
|
||||
}
|
||||
|
@ -657,7 +657,6 @@ public class Currency extends MeasureUnit {
|
|||
* @see #getName(Locale, int, boolean[])
|
||||
* @stable ICU 49
|
||||
*/
|
||||
@SuppressWarnings("javadoc") // java.util.Currency#getDisplayName() is introduced in Java 7
|
||||
public String getDisplayName() {
|
||||
return getName(Locale.getDefault(), LONG_NAME, null);
|
||||
}
|
||||
|
@ -677,7 +676,6 @@ public class Currency extends MeasureUnit {
|
|||
* @see #getName(Locale, int, boolean[])
|
||||
* @stable ICU 49
|
||||
*/
|
||||
@SuppressWarnings("javadoc") // java.util.Currency#getDisplayName() is introduced in Java 7
|
||||
public String getDisplayName(Locale locale) {
|
||||
return getName(locale, LONG_NAME, null);
|
||||
}
|
||||
|
@ -748,10 +746,10 @@ public class Currency extends MeasureUnit {
|
|||
List<TextTrieMap<CurrencyStringInfo>> currencyTrieVec = CURRENCY_NAME_CACHE.get(locale);
|
||||
if (currencyTrieVec == null) {
|
||||
TextTrieMap<CurrencyStringInfo> currencyNameTrie =
|
||||
new TextTrieMap<CurrencyStringInfo>(true);
|
||||
new TextTrieMap<>(true);
|
||||
TextTrieMap<CurrencyStringInfo> currencySymbolTrie =
|
||||
new TextTrieMap<CurrencyStringInfo>(false);
|
||||
currencyTrieVec = new ArrayList<TextTrieMap<CurrencyStringInfo>>();
|
||||
new TextTrieMap<>(false);
|
||||
currencyTrieVec = new ArrayList<>();
|
||||
currencyTrieVec.add(currencySymbolTrie);
|
||||
currencyTrieVec.add(currencyNameTrie);
|
||||
setupCurrencyTrieVec(locale, currencyTrieVec);
|
||||
|
@ -971,7 +969,7 @@ public class Currency extends MeasureUnit {
|
|||
//CurrencyFilter filter = CurrencyFilter.onDateRange(null, new Date(253373299200000L));
|
||||
CurrencyFilter filter = CurrencyFilter.all();
|
||||
all = Collections.unmodifiableList(getTenderCurrencies(filter));
|
||||
ALL_TENDER_CODES = new SoftReference<List<String>>(all);
|
||||
ALL_TENDER_CODES = new SoftReference<>(all);
|
||||
}
|
||||
return all;
|
||||
}
|
||||
|
@ -981,8 +979,8 @@ public class Currency extends MeasureUnit {
|
|||
if (all == null) {
|
||||
CurrencyMetaInfo info = CurrencyMetaInfo.getInstance();
|
||||
all = Collections.unmodifiableSet(
|
||||
new HashSet<String>(info.currencies(CurrencyFilter.all())));
|
||||
ALL_CODES_AS_SET = new SoftReference<Set<String>>(all);
|
||||
new HashSet<>(info.currencies(CurrencyFilter.all())));
|
||||
ALL_CODES_AS_SET = new SoftReference<>(all);
|
||||
}
|
||||
return all;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@ import java.util.LinkedHashMap;
|
|||
import java.util.LinkedHashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
@ -24,7 +25,6 @@ import com.ibm.icu.impl.ICUResourceBundle;
|
|||
import com.ibm.icu.impl.Relation;
|
||||
import com.ibm.icu.impl.Row;
|
||||
import com.ibm.icu.impl.Row.R3;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.locale.XLocaleDistance.DistanceOption;
|
||||
import com.ibm.icu.impl.locale.XLocaleMatcher;
|
||||
import com.ibm.icu.impl.locale.XLocaleMatcher.Builder;
|
||||
|
@ -338,7 +338,7 @@ public class LocaleMatcher {
|
|||
private void addFiltered(String desired, R3<ULocale, ULocale, Double> localeToMaxAndWeight) {
|
||||
Set<R3<ULocale, ULocale, Double>> map = desiredLanguageToPossibleLocalesToMaxLocaleToData.get(desired);
|
||||
if (map == null) {
|
||||
desiredLanguageToPossibleLocalesToMaxLocaleToData.put(desired, map = new LinkedHashSet<R3<ULocale, ULocale, Double>>());
|
||||
desiredLanguageToPossibleLocalesToMaxLocaleToData.put(desired, map = new LinkedHashSet<>());
|
||||
}
|
||||
map.add(localeToMaxAndWeight);
|
||||
if (DEBUG) {
|
||||
|
@ -346,9 +346,9 @@ public class LocaleMatcher {
|
|||
}
|
||||
}
|
||||
|
||||
Set<Row.R3<ULocale, ULocale, Double>> localeToMaxLocaleAndWeight = new LinkedHashSet<Row.R3<ULocale, ULocale, Double>>();
|
||||
Set<Row.R3<ULocale, ULocale, Double>> localeToMaxLocaleAndWeight = new LinkedHashSet<>();
|
||||
Map<String,Set<Row.R3<ULocale, ULocale, Double>>> desiredLanguageToPossibleLocalesToMaxLocaleToData
|
||||
= new LinkedHashMap<String,Set<Row.R3<ULocale, ULocale, Double>>>();
|
||||
= new LinkedHashMap<>();
|
||||
|
||||
// =============== Special Mapping Information ==============
|
||||
|
||||
|
@ -472,10 +472,10 @@ public class LocaleMatcher {
|
|||
return false;
|
||||
}
|
||||
LocalePatternMatcher other = (LocalePatternMatcher) obj;
|
||||
return Utility.objectEquals(level, other.level)
|
||||
&& Utility.objectEquals(lang, other.lang)
|
||||
&& Utility.objectEquals(script, other.script)
|
||||
&& Utility.objectEquals(region, other.region);
|
||||
return Objects.equals(level, other.level)
|
||||
&& Objects.equals(lang, other.lang)
|
||||
&& Objects.equals(script, other.script)
|
||||
&& Objects.equals(region, other.region);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
@ -509,7 +509,7 @@ public class LocaleMatcher {
|
|||
@SuppressWarnings("unused")
|
||||
private static final double maxUnequal_changeEqual = 0.75;
|
||||
|
||||
LinkedHashSet<Row.R3<LocalePatternMatcher,LocalePatternMatcher,Double>> scores = new LinkedHashSet<R3<LocalePatternMatcher, LocalePatternMatcher, Double>>();
|
||||
LinkedHashSet<Row.R3<LocalePatternMatcher,LocalePatternMatcher,Double>> scores = new LinkedHashSet<>();
|
||||
final Level level;
|
||||
|
||||
public ScoreData(Level level) {
|
||||
|
@ -810,7 +810,7 @@ public class LocaleMatcher {
|
|||
|
||||
private static final LanguageMatcherData defaultWritten;
|
||||
|
||||
private static HashMap<String,String> canonicalMap = new HashMap<String, String>();
|
||||
private static HashMap<String,String> canonicalMap = new HashMap<>();
|
||||
|
||||
|
||||
static {
|
||||
|
|
|
@ -541,7 +541,7 @@ abstract public class TimeZone implements Serializable, Cloneable, Freezable<Tim
|
|||
// Generic format
|
||||
TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
|
||||
long date = System.currentTimeMillis();
|
||||
Output<TimeType> timeType = new Output<TimeType>(TimeType.UNKNOWN);
|
||||
Output<TimeType> timeType = new Output<>(TimeType.UNKNOWN);
|
||||
|
||||
switch (style) {
|
||||
case GENERIC_LOCATION:
|
||||
|
@ -673,7 +673,6 @@ abstract public class TimeZone implements Serializable, Cloneable, Freezable<Tim
|
|||
* @see #useDaylightTime
|
||||
* @stable ICU 49
|
||||
*/
|
||||
@SuppressWarnings("javadoc") // java.util.TimeZone#observesDaylightTime() is introduced in Java 7
|
||||
public boolean observesDaylightTime() {
|
||||
return useDaylightTime() || inDaylightTime(new Date());
|
||||
}
|
||||
|
|
|
@ -10,11 +10,6 @@
|
|||
package com.ibm.icu.util;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.security.AccessControlException;
|
||||
import java.security.AccessController;
|
||||
import java.security.PrivilegedAction;
|
||||
import java.text.ParseException;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
@ -178,8 +173,8 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
// JRE 6 or older does not. JDK's Locale.SIMPLIFIED_CHINESE is actually
|
||||
// zh_CN, not zh_Hans. This is same in Java 7 or later versions.
|
||||
//
|
||||
// ULocale#toLocale() implementation uses Java reflection to create a Locale
|
||||
// with a script tag. When a new ULocale is constructed with the single arg
|
||||
// ULocale#toLocale() implementation create a Locale with a script tag.
|
||||
// When a new ULocale is constructed with the single arg
|
||||
// constructor, the volatile field 'Locale locale' is initialized by
|
||||
// #toLocale() method.
|
||||
//
|
||||
|
@ -553,45 +548,14 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
static {
|
||||
defaultULocale = forLocale(defaultLocale);
|
||||
|
||||
// For Java 6 or older JRE, ICU initializes the default script from
|
||||
// "user.script" system property. The system property was added
|
||||
// in Java 7. On JRE 7, Locale.getDefault() should reflect the
|
||||
// On JRE 7+, Locale.getDefault() should reflect the
|
||||
// property value to the Locale's default. So ICU just relies on
|
||||
// Locale.getDefault().
|
||||
|
||||
// Note: The "user.script" property is only used by initialization.
|
||||
//
|
||||
if (JDKLocaleHelper.hasLocaleCategories()) {
|
||||
for (Category cat: Category.values()) {
|
||||
int idx = cat.ordinal();
|
||||
defaultCategoryLocales[idx] = JDKLocaleHelper.getDefault(cat);
|
||||
defaultCategoryULocales[idx] = forLocale(defaultCategoryLocales[idx]);
|
||||
}
|
||||
} else {
|
||||
// Make sure the current default Locale is original.
|
||||
// If not, it means that someone updated the default Locale.
|
||||
// In this case, user.XXX properties are already out of date
|
||||
// and we should not use user.script.
|
||||
if (JDKLocaleHelper.isOriginalDefaultLocale(defaultLocale)) {
|
||||
// Use "user.script" if available
|
||||
String userScript = JDKLocaleHelper.getSystemProperty("user.script");
|
||||
if (userScript != null && LanguageTag.isScript(userScript)) {
|
||||
// Note: Builder or forLanguageTag cannot be used here
|
||||
// when one of Locale fields is not well-formed.
|
||||
BaseLocale base = defaultULocale.base();
|
||||
BaseLocale newBase = BaseLocale.getInstance(base.getLanguage(), userScript,
|
||||
base.getRegion(), base.getVariant());
|
||||
defaultULocale = getInstance(newBase, defaultULocale.extensions());
|
||||
}
|
||||
}
|
||||
|
||||
// Java 6 or older does not have separated category locales,
|
||||
// use the non-category default for all
|
||||
for (Category cat: Category.values()) {
|
||||
int idx = cat.ordinal();
|
||||
defaultCategoryLocales[idx] = defaultLocale;
|
||||
defaultCategoryULocales[idx] = defaultULocale;
|
||||
}
|
||||
for (Category cat: Category.values()) {
|
||||
int idx = cat.ordinal();
|
||||
defaultCategoryLocales[idx] = JDKLocaleHelper.getDefault(cat);
|
||||
defaultCategoryULocales[idx] = forLocale(defaultCategoryLocales[idx]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -600,21 +564,6 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
* <p>
|
||||
* The default ULocale is synchronized to the default Java Locale. This method checks
|
||||
* the current default Java Locale and returns an equivalent ULocale.
|
||||
* <p>
|
||||
* <b>Note:</b> Before Java 7, the {@link java.util.Locale} was not able to represent a
|
||||
* locale's script. Therefore, the script field in the default ULocale is always empty unless
|
||||
* a ULocale with non-empty script is explicitly set by {@link #setDefault(ULocale)}
|
||||
* on Java 6 or older systems.
|
||||
* <p>
|
||||
* <b>Note for ICU 49 or later:</b> Some JRE implementations allow users to override the default
|
||||
* {@link java.util.Locale} using system properties - <code>user.language</code>,
|
||||
* <code>user.country</code> and <code>user.variant</code>. In addition to these system
|
||||
* properties, some Java 7 implementations support <code>user.script</code> for overriding the
|
||||
* default Locale's script.
|
||||
* ICU 49 and later versions use the <code>user.script</code> system property on Java 6
|
||||
* or older systems supporting other <code>user.*</code> system properties to initialize
|
||||
* the default ULocale. The <code>user.script</code> override for default ULocale is not
|
||||
* used on Java 7, or if the current Java default Locale is changed after start up.
|
||||
*
|
||||
* @return the default ULocale.
|
||||
* @stable ICU 2.8
|
||||
|
@ -636,17 +585,6 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
if (!defaultLocale.equals(currentDefault)) {
|
||||
defaultLocale = currentDefault;
|
||||
defaultULocale = forLocale(currentDefault);
|
||||
|
||||
if (!JDKLocaleHelper.hasLocaleCategories()) {
|
||||
// Detected Java default Locale change.
|
||||
// We need to update category defaults to match the
|
||||
// Java 7's behavior on Java 6 or older environment.
|
||||
for (Category cat : Category.values()) {
|
||||
int idx = cat.ordinal();
|
||||
defaultCategoryLocales[idx] = currentDefault;
|
||||
defaultCategoryULocales[idx] = forLocale(currentDefault);
|
||||
}
|
||||
}
|
||||
}
|
||||
return defaultULocale;
|
||||
}
|
||||
|
@ -695,40 +633,13 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
// cyclic dependency for category default.
|
||||
return ULocale.ROOT;
|
||||
}
|
||||
if (JDKLocaleHelper.hasLocaleCategories()) {
|
||||
Locale currentCategoryDefault = JDKLocaleHelper.getDefault(category);
|
||||
if (!defaultCategoryLocales[idx].equals(currentCategoryDefault)) {
|
||||
defaultCategoryLocales[idx] = currentCategoryDefault;
|
||||
defaultCategoryULocales[idx] = forLocale(currentCategoryDefault);
|
||||
}
|
||||
} else {
|
||||
// java.util.Locale.setDefault(Locale) in Java 7 updates
|
||||
// category locale defaults. On Java 6 or older environment,
|
||||
// ICU4J checks if the default locale has changed and update
|
||||
// category ULocales here if necessary.
|
||||
|
||||
// Note: When java.util.Locale.setDefault(Locale) is called
|
||||
// with a Locale same with the previous one, Java 7 still
|
||||
// updates category locale defaults. On Java 6 or older env,
|
||||
// there is no good way to detect the event, ICU4J simply
|
||||
// check if the default Java Locale has changed since last
|
||||
// time.
|
||||
|
||||
Locale currentDefault = Locale.getDefault();
|
||||
if (!defaultLocale.equals(currentDefault)) {
|
||||
defaultLocale = currentDefault;
|
||||
defaultULocale = forLocale(currentDefault);
|
||||
|
||||
for (Category cat : Category.values()) {
|
||||
int tmpIdx = cat.ordinal();
|
||||
defaultCategoryLocales[tmpIdx] = currentDefault;
|
||||
defaultCategoryULocales[tmpIdx] = forLocale(currentDefault);
|
||||
}
|
||||
}
|
||||
|
||||
// No synchronization with JDK Locale, because category default
|
||||
// is not supported in Java 6 or older versions
|
||||
Locale currentCategoryDefault = JDKLocaleHelper.getDefault(category);
|
||||
if (!defaultCategoryLocales[idx].equals(currentCategoryDefault)) {
|
||||
defaultCategoryLocales[idx] = currentCategoryDefault;
|
||||
defaultCategoryULocales[idx] = forLocale(currentCategoryDefault);
|
||||
}
|
||||
|
||||
return defaultCategoryULocales[idx];
|
||||
}
|
||||
}
|
||||
|
@ -2176,7 +2087,7 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
|
||||
// parse out the acceptLanguage into an array
|
||||
TreeMap<ULocaleAcceptLanguageQ, ULocale> map =
|
||||
new TreeMap<ULocaleAcceptLanguageQ, ULocale>();
|
||||
new TreeMap<>();
|
||||
StringBuilder languageRangeBuf = new StringBuilder();
|
||||
StringBuilder qvalBuf = new StringBuilder();
|
||||
int state = 0;
|
||||
|
@ -3921,7 +3832,7 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
// other extensions are at the same level.
|
||||
// e.g. @a=ext-for-aa;calendar=japanese;m=ext-for-mm;x=priv-use
|
||||
|
||||
TreeMap<String, String> kwds = new TreeMap<String, String>();
|
||||
TreeMap<String, String> kwds = new TreeMap<>();
|
||||
for (Character key : extKeys) {
|
||||
Extension ext = exts.getExtension(key);
|
||||
if (ext instanceof UnicodeLocaleExtension) {
|
||||
|
@ -4042,114 +3953,11 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
* JDK Locale Helper
|
||||
*/
|
||||
private static final class JDKLocaleHelper {
|
||||
private static boolean hasScriptsAndUnicodeExtensions = false;
|
||||
private static boolean hasLocaleCategories = false;
|
||||
|
||||
/*
|
||||
* New methods in Java 7 Locale class
|
||||
*/
|
||||
private static Method mGetScript;
|
||||
private static Method mGetExtensionKeys;
|
||||
private static Method mGetExtension;
|
||||
private static Method mGetUnicodeLocaleKeys;
|
||||
private static Method mGetUnicodeLocaleAttributes;
|
||||
private static Method mGetUnicodeLocaleType;
|
||||
private static Method mForLanguageTag;
|
||||
|
||||
private static Method mGetDefault;
|
||||
private static Method mSetDefault;
|
||||
private static Object eDISPLAY;
|
||||
private static Object eFORMAT;
|
||||
|
||||
/*
|
||||
* This table is used for mapping between ICU and special Java
|
||||
* 6 locales. When an ICU locale matches <minumum base> with
|
||||
* <keyword>/<value>, the ICU locale is mapped to <Java> locale.
|
||||
* For example, both ja_JP@calendar=japanese and ja@calendar=japanese
|
||||
* are mapped to Java locale "ja_JP_JP". ICU locale "nn" is mapped
|
||||
* to Java locale "no_NO_NY".
|
||||
*/
|
||||
private static final String[][] JAVA6_MAPDATA = {
|
||||
// { <Java>, <ICU base>, <keyword>, <value>, <minimum base>
|
||||
{ "ja_JP_JP", "ja_JP", "calendar", "japanese", "ja"},
|
||||
{ "no_NO_NY", "nn_NO", null, null, "nn"},
|
||||
{ "th_TH_TH", "th_TH", "numbers", "thai", "th"},
|
||||
};
|
||||
|
||||
static {
|
||||
do {
|
||||
try {
|
||||
mGetScript = Locale.class.getMethod("getScript", (Class[]) null);
|
||||
mGetExtensionKeys = Locale.class.getMethod("getExtensionKeys", (Class[]) null);
|
||||
mGetExtension = Locale.class.getMethod("getExtension", char.class);
|
||||
mGetUnicodeLocaleKeys = Locale.class.getMethod("getUnicodeLocaleKeys", (Class[]) null);
|
||||
mGetUnicodeLocaleAttributes = Locale.class.getMethod("getUnicodeLocaleAttributes", (Class[]) null);
|
||||
mGetUnicodeLocaleType = Locale.class.getMethod("getUnicodeLocaleType", String.class);
|
||||
mForLanguageTag = Locale.class.getMethod("forLanguageTag", String.class);
|
||||
|
||||
hasScriptsAndUnicodeExtensions = true;
|
||||
} catch (NoSuchMethodException e) {
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (SecurityException e) {
|
||||
// TODO : report?
|
||||
}
|
||||
|
||||
try {
|
||||
Class<?> cCategory = null;
|
||||
Class<?>[] classes = Locale.class.getDeclaredClasses();
|
||||
for (Class<?> c : classes) {
|
||||
if (c.getName().equals("java.util.Locale$Category")) {
|
||||
cCategory = c;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (cCategory == null) {
|
||||
break;
|
||||
}
|
||||
mGetDefault = Locale.class.getDeclaredMethod("getDefault", cCategory);
|
||||
mSetDefault = Locale.class.getDeclaredMethod("setDefault", cCategory, Locale.class);
|
||||
|
||||
Method mName = cCategory.getMethod("name", (Class[]) null);
|
||||
Object[] enumConstants = cCategory.getEnumConstants();
|
||||
for (Object e : enumConstants) {
|
||||
String catVal = (String)mName.invoke(e, (Object[])null);
|
||||
if (catVal.equals("DISPLAY")) {
|
||||
eDISPLAY = e;
|
||||
} else if (catVal.equals("FORMAT")) {
|
||||
eFORMAT = e;
|
||||
}
|
||||
}
|
||||
if (eDISPLAY == null || eFORMAT == null) {
|
||||
break;
|
||||
}
|
||||
|
||||
hasLocaleCategories = true;
|
||||
} catch (NoSuchMethodException e) {
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (IllegalAccessException e) {
|
||||
} catch (InvocationTargetException e) {
|
||||
} catch (SecurityException e) {
|
||||
// TODO : report?
|
||||
}
|
||||
} while (false);
|
||||
}
|
||||
|
||||
private JDKLocaleHelper() {
|
||||
}
|
||||
|
||||
public static boolean hasLocaleCategories() {
|
||||
return hasLocaleCategories;
|
||||
}
|
||||
|
||||
public static ULocale toULocale(Locale loc) {
|
||||
return hasScriptsAndUnicodeExtensions ? toULocale7(loc) : toULocale6(loc);
|
||||
}
|
||||
|
||||
public static Locale toLocale(ULocale uloc) {
|
||||
return hasScriptsAndUnicodeExtensions ? toLocale7(uloc) : toLocale6(uloc);
|
||||
}
|
||||
|
||||
private static ULocale toULocale7(Locale loc) {
|
||||
String language = loc.getLanguage();
|
||||
String script = "";
|
||||
String country = loc.getCountry();
|
||||
|
@ -4158,57 +3966,49 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
Set<String> attributes = null;
|
||||
Map<String, String> keywords = null;
|
||||
|
||||
try {
|
||||
script = (String) mGetScript.invoke(loc, (Object[]) null);
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<Character> extKeys = (Set<Character>) mGetExtensionKeys.invoke(loc, (Object[]) null);
|
||||
if (!extKeys.isEmpty()) {
|
||||
for (Character extKey : extKeys) {
|
||||
if (extKey.charValue() == 'u') {
|
||||
// Found Unicode locale extension
|
||||
script = loc.getScript();
|
||||
Set<Character> extKeys = loc.getExtensionKeys();
|
||||
if (!extKeys.isEmpty()) {
|
||||
for (Character extKey : extKeys) {
|
||||
if (extKey.charValue() == 'u') {
|
||||
// Found Unicode locale extension
|
||||
|
||||
// attributes
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<String> uAttributes = (Set<String>) mGetUnicodeLocaleAttributes.invoke(loc, (Object[]) null);
|
||||
if (!uAttributes.isEmpty()) {
|
||||
attributes = new TreeSet<String>();
|
||||
for (String attr : uAttributes) {
|
||||
attributes.add(attr);
|
||||
}
|
||||
// attributes
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<String> uAttributes = loc.getUnicodeLocaleAttributes();
|
||||
if (!uAttributes.isEmpty()) {
|
||||
attributes = new TreeSet<>();
|
||||
for (String attr : uAttributes) {
|
||||
attributes.add(attr);
|
||||
}
|
||||
}
|
||||
|
||||
// keywords
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<String> uKeys = (Set<String>) mGetUnicodeLocaleKeys.invoke(loc, (Object[]) null);
|
||||
for (String kwKey : uKeys) {
|
||||
String kwVal = (String) mGetUnicodeLocaleType.invoke(loc, kwKey);
|
||||
if (kwVal != null) {
|
||||
if (kwKey.equals("va")) {
|
||||
// va-* is interpreted as a variant
|
||||
variant = (variant.length() == 0) ? kwVal : kwVal + "_" + variant;
|
||||
} else {
|
||||
if (keywords == null) {
|
||||
keywords = new TreeMap<String, String>();
|
||||
}
|
||||
keywords.put(kwKey, kwVal);
|
||||
// keywords
|
||||
Set<String> uKeys = loc.getUnicodeLocaleKeys();
|
||||
for (String kwKey : uKeys) {
|
||||
String kwVal = loc.getUnicodeLocaleType(kwKey);
|
||||
if (kwVal != null) {
|
||||
if (kwKey.equals("va")) {
|
||||
// va-* is interpreted as a variant
|
||||
variant = (variant.length() == 0) ? kwVal : kwVal + "_" + variant;
|
||||
} else {
|
||||
if (keywords == null) {
|
||||
keywords = new TreeMap<>();
|
||||
}
|
||||
keywords.put(kwKey, kwVal);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
String extVal = (String) mGetExtension.invoke(loc, extKey);
|
||||
if (extVal != null) {
|
||||
if (keywords == null) {
|
||||
keywords = new TreeMap<String, String>();
|
||||
}
|
||||
keywords.put(String.valueOf(extKey), extVal);
|
||||
}
|
||||
} else {
|
||||
String extVal = loc.getExtension(extKey);
|
||||
if (extVal != null) {
|
||||
if (keywords == null) {
|
||||
keywords = new TreeMap<>();
|
||||
}
|
||||
keywords.put(String.valueOf(extKey), extVal);
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (IllegalAccessException e) {
|
||||
throw new RuntimeException(e);
|
||||
} catch (InvocationTargetException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
|
||||
// JDK locale no_NO_NY is not interpreted as Nynorsk by ICU,
|
||||
|
@ -4253,7 +4053,7 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
attrBuf.append(attr);
|
||||
}
|
||||
if (keywords == null) {
|
||||
keywords = new TreeMap<String, String>();
|
||||
keywords = new TreeMap<>();
|
||||
}
|
||||
keywords.put(LOCALE_ATTRIBUTE_KEY, attrBuf.toString());
|
||||
}
|
||||
|
@ -4286,26 +4086,7 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
return new ULocale(getName(buf.toString()), loc);
|
||||
}
|
||||
|
||||
private static ULocale toULocale6(Locale loc) {
|
||||
ULocale uloc = null;
|
||||
String locStr = loc.toString();
|
||||
if (locStr.length() == 0) {
|
||||
uloc = ULocale.ROOT;
|
||||
} else {
|
||||
for (int i = 0; i < JAVA6_MAPDATA.length; i++) {
|
||||
if (JAVA6_MAPDATA[i][0].equals(locStr)) {
|
||||
LocaleIDParser p = new LocaleIDParser(JAVA6_MAPDATA[i][1]);
|
||||
p.setKeywordValue(JAVA6_MAPDATA[i][2], JAVA6_MAPDATA[i][3]);
|
||||
locStr = p.getName();
|
||||
break;
|
||||
}
|
||||
}
|
||||
uloc = new ULocale(getName(locStr), loc);
|
||||
}
|
||||
return uloc;
|
||||
}
|
||||
|
||||
private static Locale toLocale7(ULocale uloc) {
|
||||
public static Locale toLocale(ULocale uloc) {
|
||||
Locale loc = null;
|
||||
String ulocStr = uloc.getName();
|
||||
if (uloc.getScript().length() > 0 || ulocStr.contains("@")) {
|
||||
|
@ -4329,14 +4110,7 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
// for variant. Because ICU always normalizes variant to
|
||||
// upper case, we convert language tag to upper case here.
|
||||
tag = AsciiUtil.toUpperString(tag);
|
||||
|
||||
try {
|
||||
loc = (Locale)mForLanguageTag.invoke(null, tag);
|
||||
} catch (IllegalAccessException e) {
|
||||
throw new RuntimeException(e);
|
||||
} catch (InvocationTargetException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
loc = Locale.forLanguageTag(tag);
|
||||
}
|
||||
if (loc == null) {
|
||||
// Without script or keywords, use a Locale constructor,
|
||||
|
@ -4346,120 +4120,41 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
|
|||
return loc;
|
||||
}
|
||||
|
||||
private static Locale toLocale6(ULocale uloc) {
|
||||
String locstr = uloc.getBaseName();
|
||||
for (int i = 0; i < JAVA6_MAPDATA.length; i++) {
|
||||
if (locstr.equals(JAVA6_MAPDATA[i][1]) || locstr.equals(JAVA6_MAPDATA[i][4])) {
|
||||
if (JAVA6_MAPDATA[i][2] != null) {
|
||||
String val = uloc.getKeywordValue(JAVA6_MAPDATA[i][2]);
|
||||
if (val != null && val.equals(JAVA6_MAPDATA[i][3])) {
|
||||
locstr = JAVA6_MAPDATA[i][0];
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
locstr = JAVA6_MAPDATA[i][0];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
LocaleIDParser p = new LocaleIDParser(locstr);
|
||||
String[] names = p.getLanguageScriptCountryVariant();
|
||||
return new Locale(names[0], names[2], names[3]);
|
||||
}
|
||||
|
||||
public static Locale getDefault(Category category) {
|
||||
Locale loc = Locale.getDefault();
|
||||
if (hasLocaleCategories) {
|
||||
Object cat = null;
|
||||
java.util.Locale.Category cat = null;
|
||||
if (category != null) {
|
||||
switch (category) {
|
||||
case DISPLAY:
|
||||
cat = eDISPLAY;
|
||||
cat = java.util.Locale.Category.DISPLAY;
|
||||
break;
|
||||
case FORMAT:
|
||||
cat = eFORMAT;
|
||||
cat = java.util.Locale.Category.FORMAT;
|
||||
break;
|
||||
}
|
||||
if (cat != null) {
|
||||
try {
|
||||
loc = (Locale)mGetDefault.invoke(null, cat);
|
||||
} catch (InvocationTargetException e) {
|
||||
// fall through - use the base default
|
||||
} catch (IllegalArgumentException e) {
|
||||
// fall through - use the base default
|
||||
} catch (IllegalAccessException e) {
|
||||
// fall through - use the base default
|
||||
}
|
||||
}
|
||||
}
|
||||
return loc;
|
||||
if (cat != null) {
|
||||
return Locale.getDefault(cat);
|
||||
}
|
||||
return Locale.getDefault();
|
||||
}
|
||||
|
||||
public static void setDefault(Category category, Locale newLocale) {
|
||||
if (hasLocaleCategories) {
|
||||
Object cat = null;
|
||||
java.util.Locale.Category cat = null;
|
||||
if (category != null) {
|
||||
switch (category) {
|
||||
case DISPLAY:
|
||||
cat = eDISPLAY;
|
||||
cat = java.util.Locale.Category.DISPLAY;
|
||||
break;
|
||||
case FORMAT:
|
||||
cat = eFORMAT;
|
||||
cat = java.util.Locale.Category.FORMAT;
|
||||
break;
|
||||
}
|
||||
if (cat != null) {
|
||||
try {
|
||||
mSetDefault.invoke(null, cat, newLocale);
|
||||
} catch (InvocationTargetException e) {
|
||||
// fall through - no effects
|
||||
} catch (IllegalArgumentException e) {
|
||||
// fall through - no effects
|
||||
} catch (IllegalAccessException e) {
|
||||
// fall through - no effects
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Returns true if the given Locale matches the original
|
||||
// default locale initialized by JVM by checking user.XXX
|
||||
// system properties. When the system properties are not accessible,
|
||||
// this method returns false.
|
||||
public static boolean isOriginalDefaultLocale(Locale loc) {
|
||||
if (hasScriptsAndUnicodeExtensions) {
|
||||
String script = "";
|
||||
try {
|
||||
script = (String) mGetScript.invoke(loc, (Object[]) null);
|
||||
} catch (Exception e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return loc.getLanguage().equals(getSystemProperty("user.language"))
|
||||
&& loc.getCountry().equals(getSystemProperty("user.country"))
|
||||
&& loc.getVariant().equals(getSystemProperty("user.variant"))
|
||||
&& script.equals(getSystemProperty("user.script"));
|
||||
}
|
||||
return loc.getLanguage().equals(getSystemProperty("user.language"))
|
||||
&& loc.getCountry().equals(getSystemProperty("user.country"))
|
||||
&& loc.getVariant().equals(getSystemProperty("user.variant"));
|
||||
}
|
||||
|
||||
public static String getSystemProperty(String key) {
|
||||
String val = null;
|
||||
final String fkey = key;
|
||||
if (System.getSecurityManager() != null) {
|
||||
try {
|
||||
val = AccessController.doPrivileged(new PrivilegedAction<String>() {
|
||||
@Override
|
||||
public String run() {
|
||||
return System.getProperty(fkey);
|
||||
}
|
||||
});
|
||||
} catch (AccessControlException e) {
|
||||
// ignore
|
||||
}
|
||||
if (cat != null) {
|
||||
Locale.setDefault(cat, newLocale);
|
||||
} else {
|
||||
val = System.getProperty(fkey);
|
||||
Locale.setDefault(newLocale);
|
||||
}
|
||||
return val;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -109,7 +109,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -109,7 +109,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-collate"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
@ -168,9 +168,12 @@ org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
|
|||
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
|
||||
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
|
||||
org.eclipse.jdt.core.formatter.indentation.size=4
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
*/
|
||||
package com.ibm.icu.impl.icuadapter;
|
||||
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
import java.util.GregorianCalendar;
|
||||
|
@ -30,29 +28,18 @@ public class TimeZoneJDK extends com.ibm.icu.util.TimeZone {
|
|||
|
||||
private TimeZone fJdkTz;
|
||||
private transient Calendar fJdkCal;
|
||||
private static Method mObservesDaylightTime;
|
||||
|
||||
static {
|
||||
try {
|
||||
mObservesDaylightTime = TimeZone.class.getMethod("observesDaylightTime", (Class[]) null);
|
||||
} catch (NoSuchMethodException e) {
|
||||
// Java 6 or older
|
||||
} catch (SecurityException e) {
|
||||
// not visible
|
||||
}
|
||||
}
|
||||
|
||||
private TimeZoneJDK(TimeZone jdkTz) {
|
||||
fJdkTz = (TimeZone)jdkTz.clone();
|
||||
}
|
||||
|
||||
|
||||
public static com.ibm.icu.util.TimeZone wrap(TimeZone jdkTz) {
|
||||
if (jdkTz instanceof TimeZoneICU) {
|
||||
return ((TimeZoneICU)jdkTz).unwrap();
|
||||
}
|
||||
return new TimeZoneJDK(jdkTz);
|
||||
}
|
||||
|
||||
|
||||
public TimeZone unwrap() {
|
||||
return (TimeZone)fJdkTz.clone();
|
||||
}
|
||||
|
@ -81,7 +68,7 @@ public class TimeZoneJDK extends com.ibm.icu.util.TimeZone {
|
|||
public String getDisplayName(boolean daylight, int style, Locale locale) {
|
||||
return fJdkTz.getDisplayName(daylight, style, locale);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getDisplayName(boolean daylight, int style, ULocale locale) {
|
||||
return fJdkTz.getDisplayName(daylight, style, locale.toLocale());
|
||||
|
@ -196,16 +183,7 @@ public class TimeZoneJDK extends com.ibm.icu.util.TimeZone {
|
|||
|
||||
@Override
|
||||
public boolean observesDaylightTime() {
|
||||
if (mObservesDaylightTime != null) {
|
||||
// Java 7+
|
||||
try {
|
||||
return (Boolean)mObservesDaylightTime.invoke(fJdkTz, (Object[]) null);
|
||||
} catch (IllegalAccessException e) {
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (InvocationTargetException e) {
|
||||
}
|
||||
}
|
||||
return super.observesDaylightTime();
|
||||
return fJdkTz.observesDaylightTime();
|
||||
}
|
||||
|
||||
// Freezable stuffs
|
||||
|
|
|
@ -64,7 +64,7 @@ public class ICULocaleServiceProvider {
|
|||
return ULocale.forLocale(spLoc);
|
||||
}
|
||||
|
||||
// The locale may have script field on Java 7+.
|
||||
// The locale may have script field.
|
||||
// So we once convert it to ULocale, then strip the ICU suffix off
|
||||
// if necessary.
|
||||
ULocale result = ULocale.forLocale(locale);
|
||||
|
@ -115,7 +115,7 @@ public class ICULocaleServiceProvider {
|
|||
return SPECIAL_LOCALES_MAP;
|
||||
}
|
||||
|
||||
Map<Locale, Locale> splocs = new HashMap<Locale, Locale>();
|
||||
Map<Locale, Locale> splocs = new HashMap<>();
|
||||
for (Locale spLoc : SPECIAL_LOCALES) {
|
||||
String var = spLoc.getVariant();
|
||||
if (var.length() > 0) {
|
||||
|
@ -131,7 +131,7 @@ public class ICULocaleServiceProvider {
|
|||
return LOCALES;
|
||||
}
|
||||
|
||||
Set<Locale> localeSet = new HashSet<Locale>();
|
||||
Set<Locale> localeSet = new HashSet<>();
|
||||
ULocale[] icuLocales = ICUResourceBundle.getAvailableULocales();
|
||||
|
||||
for (ULocale uloc : icuLocales) {
|
||||
|
@ -183,14 +183,6 @@ public class ICULocaleServiceProvider {
|
|||
}
|
||||
|
||||
private static void addULocale(ULocale uloc, Set<Locale> locales) {
|
||||
// special case - nn
|
||||
// ULocale#toLocale on Java 6 maps "nn" to "no_NO_NY"
|
||||
if (uloc.getLanguage().equals("nn") && uloc.getScript().length() == 0) {
|
||||
Locale locNN = new Locale(uloc.getLanguage(), uloc.getCountry(), uloc.getVariant());
|
||||
addLocale(locNN, locales);
|
||||
return;
|
||||
}
|
||||
|
||||
locales.add(uloc.toLocale());
|
||||
|
||||
if (enableIcuVariants()) {
|
||||
|
|
|
@ -26,8 +26,7 @@ public class CurrencyNameProviderICU extends CurrencyNameProvider {
|
|||
return sym;
|
||||
}
|
||||
|
||||
// Not available in Java 6
|
||||
// @Override
|
||||
@Override
|
||||
public String getDisplayName(String currencyCode, Locale locale) {
|
||||
CurrencyDisplayNames curDispNames = CurrencyDisplayNames.getInstance(ICULocaleServiceProvider.toULocaleNoSpecialVariant(locale));
|
||||
String name = curDispNames.getName(currencyCode);
|
||||
|
|
|
@ -39,8 +39,7 @@ public class LocaleNameProviderICU extends LocaleNameProvider {
|
|||
return disp;
|
||||
}
|
||||
|
||||
// Not available in Java 6
|
||||
// @Override
|
||||
@Override
|
||||
public String getDisplayScript(String scriptCode, Locale locale) {
|
||||
scriptCode = AsciiUtil.toTitleString(scriptCode);
|
||||
String disp = LocaleDisplayNames.getInstance(ICULocaleServiceProvider.toULocaleNoSpecialVariant(locale))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -109,7 +109,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -109,7 +109,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -25,11 +25,11 @@
|
|||
|
||||
<target name="@compile">
|
||||
<echo message="build-local: ${global.build-local.properties}"/>
|
||||
<!-- set java 6 bootclasspath to empty if not set -->
|
||||
<property name="java6.bootclasspath" value=""/>
|
||||
<!-- set java 7 bootclasspath to empty if not set -->
|
||||
<property name="java7.bootclasspath" value=""/>
|
||||
|
||||
<condition property="javac.bootclasspath" value="${java6.bootclasspath}" else="">
|
||||
<equals arg1="${javac.target}" arg2="1.6"/>
|
||||
<condition property="javac.bootclasspath" value="${java7.bootclasspath}" else="">
|
||||
<equals arg1="${javac.target}" arg2="1.7"/>
|
||||
</condition>
|
||||
|
||||
<echo message="--- java compiler arguments ------------------------"/>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
icu4j.spec.version = 62
|
||||
icu4j.impl.version = 62.1
|
||||
icu4j.data.version = 62
|
||||
default.exec.env = JavaSE-1.6
|
||||
default.exec.env = JavaSE-1.7
|
||||
|
||||
copyright = \u00A9 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
|
||||
|
@ -20,8 +20,8 @@ bin.dir = ${out.dir}/bin
|
|||
jar.dir = ${out.dir}/lib
|
||||
|
||||
# Default java compiler options
|
||||
javac.source = 1.6
|
||||
javac.target = 1.6
|
||||
javac.source = 1.7
|
||||
javac.target = 1.7
|
||||
javac.debug = on
|
||||
javac.compilerarg = -Xlint:none
|
||||
java.src.encoding = UTF-8
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-charset"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
|
||||
|
|
|
@ -7,9 +7,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
|
|||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -97,7 +97,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-collate"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-currdata"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-regiondata"/>
|
||||
|
|
|
@ -7,9 +7,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
|
|||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -97,7 +97,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -29,8 +29,6 @@ import org.junit.runner.RunWith;
|
|||
import org.junit.runners.JUnit4;
|
||||
|
||||
import com.ibm.icu.dev.test.TestFmwk;
|
||||
import com.ibm.icu.dev.test.TestUtil;
|
||||
import com.ibm.icu.dev.test.TestUtil.JavaVendor;
|
||||
import com.ibm.icu.text.DateFormat;
|
||||
import com.ibm.icu.text.NumberFormat;
|
||||
import com.ibm.icu.util.Calendar;
|
||||
|
@ -158,15 +156,16 @@ public class IntlTestDateFormatAPI extends TestFmwk
|
|||
long count = locales.length;
|
||||
logln("Got " + count + " locales" );
|
||||
|
||||
// Ticket #6280, #8078 and #11674
|
||||
// These locales should be included in the result
|
||||
boolean missingLocaleNotFatal =
|
||||
TestUtil.getJavaVendor() == JavaVendor.Android || TestUtil.getJavaVersion() >= 7;
|
||||
// These test cases used to check Locales without a script tag.
|
||||
// Java 6 Locale did not support script tags, such as zh_CN and zh_TW.
|
||||
// Because ICU 63+ supports Java 7 as minimum Java version, sample
|
||||
// Locales below were updated with ones with script tags.
|
||||
// See ticket #6280, #8078 and #11674 for the history.
|
||||
final Locale[] samples = {
|
||||
new Locale("zh", "CN"),
|
||||
new Locale("zh", "TW"),
|
||||
new Locale("zh", "HK"),
|
||||
new Locale("sr", "RS"),
|
||||
Locale.forLanguageTag("zh-Hans-CN"),
|
||||
Locale.forLanguageTag("zh-Hant-TW"),
|
||||
Locale.forLanguageTag("zh-Hant-HK"),
|
||||
Locale.forLanguageTag("sr-Cyrl-RS"),
|
||||
};
|
||||
boolean[] available = new boolean[samples.length];
|
||||
for(int i = 0; i < count; i++) {
|
||||
|
@ -182,13 +181,7 @@ public class IntlTestDateFormatAPI extends TestFmwk
|
|||
}
|
||||
for (int i = 0; i < available.length; i++) {
|
||||
if (!available[i]) {
|
||||
if (missingLocaleNotFatal) {
|
||||
// Java 7 supports script field, so zh_Hans_CN is included
|
||||
// in the available locale list.
|
||||
logln("INFO: missing Locale: " + samples[i]);
|
||||
} else {
|
||||
errln("ERROR: missing Locale: " + samples[i]);
|
||||
}
|
||||
errln("ERROR: missing Locale: " + samples[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -218,13 +218,13 @@ public class TestUScript extends TestFmwk {
|
|||
UnicodeSet scriptSet = new UnicodeSet();
|
||||
scriptSet.applyIntPropertyValue(UProperty.SCRIPT, sc);
|
||||
if(usage == ScriptUsage.NOT_ENCODED) {
|
||||
assertTrue(sn + " not encoded, no sample", sample.length() == 0); // Java 6: sample.isEmpty()
|
||||
assertTrue(sn + " not encoded, no sample", sample.isEmpty());
|
||||
assertFalse(sn + " not encoded, not RTL", UScript.isRightToLeft(sc));
|
||||
assertFalse(sn + " not encoded, not LB letters", UScript.breaksBetweenLetters(sc));
|
||||
assertFalse(sn + " not encoded, not cased", UScript.isCased(sc));
|
||||
assertTrue(sn + " not encoded, no characters", scriptSet.isEmpty());
|
||||
} else {
|
||||
assertFalse(sn + " encoded, has a sample character", sample.length() == 0); // Java 6: sample.isEmpty()
|
||||
assertFalse(sn + " encoded, has a sample character", sample.isEmpty());
|
||||
int firstChar = sample.codePointAt(0);
|
||||
int charScript = getCharScript(sc);
|
||||
assertEquals(sn + " script(sample(script))",
|
||||
|
|
|
@ -73,10 +73,10 @@ public class RBBIMonkeyTest extends TestFmwk {
|
|||
static class BreakRules {
|
||||
BreakRules(RBBIMonkeyImpl monkeyImpl) {
|
||||
fMonkeyImpl = monkeyImpl;
|
||||
fBreakRules = new ArrayList<BreakRule>();
|
||||
fBreakRules = new ArrayList<>();
|
||||
fType = BreakIterator.KIND_TITLE;
|
||||
fCharClasses = new HashMap<String, CharClass>();
|
||||
fCharClassList = new ArrayList<CharClass>();
|
||||
fCharClasses = new HashMap<>();
|
||||
fCharClassList = new ArrayList<>();
|
||||
fDictionarySet = new UnicodeSet();
|
||||
|
||||
// Match an alpha-numeric identifier in a rule. Will be a set name.
|
||||
|
@ -293,25 +293,12 @@ public class RBBIMonkeyTest extends TestFmwk {
|
|||
|
||||
thisRule.fExpandedRule = thisRule.fExpandedRule.replace("[]", "[a&&[^a]]");
|
||||
|
||||
// Change Unicode escape syntax for compatibility with Java regular expressions (Java 7 or newer)
|
||||
// Change Unicode escape syntax for compatibility with Java regular expressions
|
||||
// \udddd => \x{dddd}
|
||||
// \U00hhhhhh => \x{hhhhhh}
|
||||
|
||||
// thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\u([0-9A-Fa-f]{4})", "\\\\x{$1}");
|
||||
// thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\U00([0-9A-Fa-f]{6})", "\\\\x{$1}");
|
||||
|
||||
// Java 6 compatibility troubles - there is no syntax for escaping a supplementary character
|
||||
// within a regular expression character class. Put them in as unescaped literal chars.
|
||||
StringBuilder sb = new StringBuilder(thisRule.fExpandedRule);
|
||||
while (true) {
|
||||
int where = sb.indexOf("\\U00");
|
||||
if (where < 0) {
|
||||
break;
|
||||
}
|
||||
String cp = hexToCodePoint(sb.substring(where+2, where+10));
|
||||
sb.replace(where, where+10, cp);
|
||||
}
|
||||
thisRule.fExpandedRule = sb.toString();
|
||||
thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\u([0-9A-Fa-f]{4})", "\\\\x{$1}");
|
||||
thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\U00([0-9A-Fa-f]{6})", "\\\\x{$1}");
|
||||
|
||||
// Escape any literal '#' in the rule expression. Without escaping, these introduce a comment.
|
||||
// UnicodeSet._generatePattern() inserts un-escaped "#"s
|
||||
|
@ -1014,7 +1001,7 @@ public class RBBIMonkeyTest extends TestFmwk {
|
|||
boolean verbose = getBooleanProperty("verbose", false);
|
||||
int seed = getIntProperty("seed", 1);
|
||||
|
||||
List<RBBIMonkeyImpl> startedTests = new ArrayList<RBBIMonkeyImpl>();
|
||||
List<RBBIMonkeyImpl> startedTests = new ArrayList<>();
|
||||
|
||||
// Monkey testing is multi-threaded.
|
||||
// Each set of break rules to be tested is run in a separate thread.
|
||||
|
|
|
@ -13,12 +13,12 @@ import java.text.AttributedCharacterIterator;
|
|||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.Locale;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.impl.DateNumberFormat;
|
||||
import com.ibm.icu.impl.TZDBTimeZoneNames;
|
||||
import com.ibm.icu.impl.TimeZoneGenericNames;
|
||||
import com.ibm.icu.impl.TimeZoneGenericNames.GenericNameType;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.text.ChineseDateFormat;
|
||||
import com.ibm.icu.text.ChineseDateFormatSymbols;
|
||||
import com.ibm.icu.text.CompactDecimalFormat;
|
||||
|
@ -2378,7 +2378,7 @@ public class FormatHandler
|
|||
for (long date : DATES) {
|
||||
String nameA = tzgna.getDisplayName(tz, nt, date);
|
||||
String nameB = tzgnb.getDisplayName(tz, nt, date);
|
||||
if (!Utility.objectEquals(nameA, nameB)) {
|
||||
if (!Objects.equals(nameA, nameB)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -2424,7 +2424,7 @@ public class FormatHandler
|
|||
for (long date : DATES) {
|
||||
String nameA = tzdbna.getDisplayName(tzid, nt, date);
|
||||
String nameB = tzdbnb.getDisplayName(tzid, nt, date);
|
||||
if (!Utility.objectEquals(nameA, nameB)) {
|
||||
if (!Objects.equals(nameA, nameB)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ import java.util.Enumeration;
|
|||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.dev.test.format.MeasureUnitTest;
|
||||
import com.ibm.icu.dev.test.format.PluralRulesTest;
|
||||
|
@ -36,7 +37,6 @@ import com.ibm.icu.impl.JavaTimeZone;
|
|||
import com.ibm.icu.impl.OlsonTimeZone;
|
||||
import com.ibm.icu.impl.TimeZoneAdapter;
|
||||
import com.ibm.icu.impl.URLHandler;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.math.BigDecimal;
|
||||
import com.ibm.icu.math.MathContext;
|
||||
import com.ibm.icu.util.AnnualTimeZoneRule;
|
||||
|
@ -708,7 +708,7 @@ public class SerializableTestUtility {
|
|||
return a == null ? b == null :
|
||||
b == null ? false :
|
||||
a.getClass().equals(b.getClass()) &&
|
||||
Utility.objectEquals(a.getMessage(), b.getMessage()) &&
|
||||
Objects.equals(a.getMessage(), b.getMessage()) &&
|
||||
sameThrowable(a.getCause(), b.getCause());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.junit.runner.RunWith;
|
|||
import org.junit.runners.JUnit4;
|
||||
|
||||
import com.ibm.icu.dev.test.TestFmwk;
|
||||
import com.ibm.icu.dev.test.TestUtil;
|
||||
import com.ibm.icu.dev.test.TestUtil.JavaVendor;
|
||||
import com.ibm.icu.impl.CurrencyData;
|
||||
import com.ibm.icu.text.CurrencyDisplayNames;
|
||||
import com.ibm.icu.text.CurrencyMetaInfo;
|
||||
|
@ -644,19 +642,18 @@ public class CurrencyTest extends TestFmwk {
|
|||
String[] actual = Currency.getAvailableCurrencyCodes(locale, date);
|
||||
|
||||
// Order is not important as of 4.4. We never documented that it was.
|
||||
Set<String> expectedSet = new HashSet<String>();
|
||||
Set<String> expectedSet = new HashSet<>();
|
||||
if (expected != null) {
|
||||
expectedSet.addAll(Arrays.asList(expected));
|
||||
}
|
||||
Set<String> actualSet = new HashSet<String>();
|
||||
Set<String> actualSet = new HashSet<>();
|
||||
if (actual != null) {
|
||||
actualSet.addAll(Arrays.asList(actual));
|
||||
}
|
||||
assertEquals(locale + " on " + timeString, expectedSet, actualSet);
|
||||
|
||||
// With Java Locale
|
||||
// Note: skip this test on Java 6 or older when keywords are available
|
||||
if (locale.getKeywords() == null || TestUtil.getJavaVendor() == JavaVendor.Android || TestUtil.getJavaVersion() >= 7) {
|
||||
if (locale.getKeywords() == null) {
|
||||
Locale javaloc = locale.toLocale();
|
||||
String[] actualWithJavaLocale = Currency.getAvailableCurrencyCodes(javaloc, date);
|
||||
// should be exactly same with the ULocale version
|
||||
|
@ -739,7 +736,7 @@ public class CurrencyTest extends TestFmwk {
|
|||
String[] all = Currency.getKeywordValuesForLocale("currency", loc, false);
|
||||
// The items in the two collections should match (ignore order,
|
||||
// behavior change from 4.3.3)
|
||||
Set<String> returnedSet = new HashSet<String>();
|
||||
Set<String> returnedSet = new HashSet<>();
|
||||
returnedSet.addAll(Arrays.asList(all));
|
||||
assertEquals(loc.toString(), ALLSET, returnedSet);
|
||||
}
|
||||
|
|
|
@ -7,11 +7,11 @@ import java.io.IOException;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.ibm.icu.dev.test.AbstractTestLog;
|
||||
import com.ibm.icu.dev.test.TestFmwk;
|
||||
import com.ibm.icu.dev.util.CollectionUtilities;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.FileUtilities;
|
||||
import com.ibm.icu.impl.locale.XCldrStub.Splitter;
|
||||
import com.ibm.icu.util.ICUUncheckedIOException;
|
||||
|
@ -26,8 +26,8 @@ abstract public class DataDrivenTestHelper {
|
|||
protected TestFmwk framework = null;
|
||||
protected int minArgumentCount = 3;
|
||||
protected int maxArgumentCount = 4;
|
||||
private List<List<String>> lines = new ArrayList<List<String>>();
|
||||
private List<String> comments = new ArrayList<String>();
|
||||
private List<List<String>> lines = new ArrayList<>();
|
||||
private List<String> comments = new ArrayList<>();
|
||||
|
||||
public DataDrivenTestHelper setFramework(TestFmwk testFramework) {
|
||||
this.framework = testFramework;
|
||||
|
@ -165,7 +165,7 @@ abstract public class DataDrivenTestHelper {
|
|||
}
|
||||
|
||||
protected boolean assertEquals(String message, Object expected, Object actual) {
|
||||
return TestFmwk.handleAssert(Utility.equals(expected, actual), message, stringFor(expected), stringFor(actual), null, false);
|
||||
return TestFmwk.handleAssert(Objects.equals(expected, actual), message, stringFor(expected), stringFor(actual), null, false);
|
||||
}
|
||||
|
||||
private final String stringFor(Object obj) {
|
||||
|
|
|
@ -21,11 +21,11 @@ import java.text.ParsePosition;
|
|||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
import java.util.Iterator;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
import com.ibm.icu.impl.ICUConfig;
|
||||
import com.ibm.icu.impl.PatternProps;
|
||||
import com.ibm.icu.impl.Utility;
|
||||
import com.ibm.icu.lang.UCharacter;
|
||||
import com.ibm.icu.math.BigDecimal;
|
||||
import com.ibm.icu.math.MathContext;
|
||||
|
@ -2207,7 +2207,7 @@ public class DecimalFormat_ICU58 extends NumberFormat {
|
|||
if (currencyPluralInfo == null) {
|
||||
currencyPluralInfo = new CurrencyPluralInfo(symbols.getULocale());
|
||||
}
|
||||
affixPatternsForCurrency = new HashSet<AffixForCurrency>();
|
||||
affixPatternsForCurrency = new HashSet<>();
|
||||
|
||||
// save the current pattern, since it will be changed by
|
||||
// applyPatternWithoutExpandAffix
|
||||
|
@ -2225,7 +2225,7 @@ public class DecimalFormat_ICU58 extends NumberFormat {
|
|||
|
||||
// add plural pattern
|
||||
Iterator<String> iter = currencyPluralInfo.pluralPatternIterator();
|
||||
Set<String> currencyUnitPatternSet = new HashSet<String>();
|
||||
Set<String> currencyUnitPatternSet = new HashSet<>();
|
||||
while (iter.hasNext()) {
|
||||
String pluralCount = iter.next();
|
||||
String currencyPattern = currencyPluralInfo.getCurrencyPluralPattern(pluralCount);
|
||||
|
@ -3989,7 +3989,7 @@ public class DecimalFormat_ICU58 extends NumberFormat {
|
|||
if (currencyPluralInfo != null) {
|
||||
other.currencyPluralInfo = (CurrencyPluralInfo) currencyPluralInfo.clone();
|
||||
}
|
||||
other.attributes = new ArrayList<FieldPosition>(); // #9240
|
||||
other.attributes = new ArrayList<>(); // #9240
|
||||
other.currencyUsage = currencyUsage;
|
||||
|
||||
// TODO: We need to figure out whether we share a single copy of DigitList by
|
||||
|
@ -4032,7 +4032,7 @@ public class DecimalFormat_ICU58 extends NumberFormat {
|
|||
&& (!useSignificantDigits || minSignificantDigits == other.minSignificantDigits
|
||||
&& maxSignificantDigits == other.maxSignificantDigits)
|
||||
&& symbols.equals(other.symbols)
|
||||
&& Utility.objectEquals(currencyPluralInfo, other.currencyPluralInfo)
|
||||
&& Objects.equals(currencyPluralInfo, other.currencyPluralInfo)
|
||||
&& currencyUsage.equals(other.currencyUsage);
|
||||
}
|
||||
|
||||
|
@ -6059,7 +6059,7 @@ public class DecimalFormat_ICU58 extends NumberFormat {
|
|||
// Proclaim JDK 1.1 serial compatibility.
|
||||
private static final long serialVersionUID = 864413376551465018L;
|
||||
|
||||
private ArrayList<FieldPosition> attributes = new ArrayList<FieldPosition>();
|
||||
private ArrayList<FieldPosition> attributes = new ArrayList<>();
|
||||
|
||||
// The following are used in currency format
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
|
||||
<classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar">
|
||||
<attributes>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-localespi"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
@ -168,9 +168,12 @@ org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
|
|||
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
|
||||
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
|
||||
org.eclipse.jdt.core.formatter.indentation.size=4
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
|
||||
|
|
|
@ -140,16 +140,8 @@ public class CollatorTest extends TestFmwk {
|
|||
@Test
|
||||
public void TestCollationKeyword() {
|
||||
// ICU provider variant is appended
|
||||
ULocale uloc0 = new ULocale("de_DE_" + TestUtil.ICU_VARIANT + "@collation=phonebook");
|
||||
Locale loc = uloc0.toLocale();
|
||||
// On Java 7+, locale extension is preserved
|
||||
ULocale uloc = ULocale.forLocale(loc);
|
||||
String nsType = uloc.getKeywordValue("collation");
|
||||
if (nsType == null) {
|
||||
// Java 6 - skip this test
|
||||
return;
|
||||
}
|
||||
|
||||
ULocale uloc = new ULocale("de_DE_" + TestUtil.ICU_VARIANT + "@collation=phonebook");
|
||||
Locale loc = uloc.toLocale();
|
||||
Collator jdkColl = Collator.getInstance(loc);
|
||||
boolean isPhonebook = false;
|
||||
if (jdkColl instanceof CollatorICU) {
|
||||
|
|
|
@ -192,16 +192,8 @@ public class DateFormatSymbolsTest extends TestFmwk {
|
|||
@Test
|
||||
public void TestCalendarKeyword() {
|
||||
// ICU provider variant is appended
|
||||
ULocale uloc0 = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@calendar=japanese");
|
||||
Locale loc = uloc0.toLocale();
|
||||
// On Java 7+, locale extension is preserved
|
||||
ULocale uloc = ULocale.forLocale(loc);
|
||||
String calType = uloc.getKeywordValue("calendar");
|
||||
if (calType == null) {
|
||||
// Java 6 - skip this test
|
||||
return;
|
||||
}
|
||||
|
||||
ULocale uloc = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@calendar=japanese");
|
||||
Locale loc = uloc.toLocale();
|
||||
DateFormatSymbols jdkDfs = DateFormatSymbols.getInstance(loc);
|
||||
com.ibm.icu.text.DateFormatSymbols icuDfs = com.ibm.icu.text.DateFormatSymbols.getInstance(uloc);
|
||||
|
||||
|
|
|
@ -205,16 +205,8 @@ public class DateFormatTest extends TestFmwk {
|
|||
@Test
|
||||
public void TestCalendarKeyword() {
|
||||
// ICU provider variant is appended
|
||||
ULocale uloc0 = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@calendar=buddhist");
|
||||
Locale loc = uloc0.toLocale();
|
||||
// On Java 7+, locale extension is preserved
|
||||
ULocale uloc = ULocale.forLocale(loc);
|
||||
String calType = uloc.getKeywordValue("calendar");
|
||||
if (calType == null) {
|
||||
// Java 6 - skip this test
|
||||
return;
|
||||
}
|
||||
|
||||
ULocale uloc = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@calendar=buddhist");
|
||||
Locale loc = uloc.toLocale();
|
||||
DateFormat jdkDfmt = DateFormat.getDateInstance(DateFormat.FULL, loc);
|
||||
Calendar cal = jdkDfmt.getCalendar();
|
||||
boolean isBuddhist = false;
|
||||
|
|
|
@ -167,16 +167,8 @@ public class DecimalFormatSymbolsTest extends TestFmwk {
|
|||
@Test
|
||||
public void TestKeywords() {
|
||||
// ICU provider variant is appended
|
||||
ULocale uloc0 = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@numbers=Arab;currency=EUR");
|
||||
Locale loc = uloc0.toLocale();
|
||||
// On Java 7+, locale extension is preserved
|
||||
ULocale uloc = ULocale.forLocale(loc);
|
||||
String nsType = uloc.getKeywordValue("numbers");
|
||||
if (nsType == null) {
|
||||
// Java 6 - skip this test
|
||||
return;
|
||||
}
|
||||
|
||||
ULocale uloc = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@numbers=Arab;currency=EUR");
|
||||
Locale loc = uloc.toLocale();
|
||||
DecimalFormatSymbols jdkDecfs = DecimalFormatSymbols.getInstance(loc);
|
||||
com.ibm.icu.text.DecimalFormatSymbols icuDecfs = com.ibm.icu.text.DecimalFormatSymbols.getInstance(uloc);
|
||||
// Check digit 0
|
||||
|
|
|
@ -298,16 +298,8 @@ public class NumberFormatTest extends TestFmwk {
|
|||
@Test
|
||||
public void TestKeywords() {
|
||||
// ICU provider variant is appended
|
||||
ULocale uloc0 = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@numbers=Arab;currency=EUR");
|
||||
Locale loc = uloc0.toLocale();
|
||||
// On Java 7+, locale extension is preserved
|
||||
ULocale uloc = ULocale.forLocale(loc);
|
||||
String nsType = uloc.getKeywordValue("numbers");
|
||||
if (nsType == null) {
|
||||
// Java 6 - skip this test
|
||||
return;
|
||||
}
|
||||
|
||||
ULocale uloc = new ULocale("en_US_" + TestUtil.ICU_VARIANT + "@numbers=arab;currency=EUR");
|
||||
Locale loc = uloc.toLocale();
|
||||
NumberFormat jdkNfmt = NumberFormat.getCurrencyInstance(loc);
|
||||
com.ibm.icu.text.NumberFormat icuNfmt = com.ibm.icu.text.NumberFormat.getCurrencyInstance(uloc);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
|
||||
<classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-translit"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/>
|
||||
<classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
|
||||
<classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar">
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -96,7 +96,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -8,6 +8,6 @@
|
|||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-regiondata"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-tools"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="output" path="out/bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -70,7 +70,7 @@ org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disa
|
|||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
@ -142,9 +142,12 @@ org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
|
|||
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
|
||||
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
|
||||
org.eclipse.jdt.core.formatter.indentation.size=4
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
|
||||
org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
#*******************************************************************************
|
||||
shared.dir = ../main/shared
|
||||
|
||||
javac.source = 1.6
|
||||
javac.target = 1.6
|
||||
javac.source = 1.7
|
||||
javac.target = 1.7
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ICU_JAR"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-collate"/>
|
||||
|
|
|
@ -6,9 +6,9 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
|
|||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -109,7 +109,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -1,130 +0,0 @@
|
|||
/*
|
||||
* © 2016 and later: Unicode, Inc. and others.
|
||||
* License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2011, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
||||
/* Javadoc style sheet */
|
||||
|
||||
/* Define colors, fonts and other style attributes here to override the defaults */
|
||||
|
||||
/* Page background color */
|
||||
body { background-color: #FFFFFF; color:#000000 }
|
||||
|
||||
/* Headings */
|
||||
h1 { font-size: 145% }
|
||||
|
||||
/* Table colors */
|
||||
.TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */
|
||||
.TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */
|
||||
.TableRowColor { background: #FFFFFF; color:#000000 } /* White */
|
||||
|
||||
/* Font used in left-hand frame lists */
|
||||
.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
|
||||
/* Navigation bar fonts and colors */
|
||||
.NavBarCell1 { background-color:#EEEEFF; color:#000000} /* Light mauve */
|
||||
.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */
|
||||
.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;}
|
||||
.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;}
|
||||
|
||||
.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
|
||||
.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
|
||||
|
||||
|
||||
|
||||
/* ICU modified JCite styles */
|
||||
pre.java /* container for citations */
|
||||
{
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
border-color: DarkGray;
|
||||
margin: 1.5em 1.5em 1.5em 1.5em;
|
||||
background-color: cornsilk;
|
||||
}
|
||||
|
||||
tt.java /* single cited line in JCite's -tt mode */
|
||||
{
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
border-color: DarkGray;
|
||||
margin: 1.5em 1.5em 1.5em 1.5em;
|
||||
background-color: cornsilk;
|
||||
}
|
||||
|
||||
span.j-blk /* block comment */
|
||||
{
|
||||
color: DarkGreen;
|
||||
}
|
||||
|
||||
span.j-cmt /* line comment */
|
||||
{
|
||||
color: DarkGreen;
|
||||
}
|
||||
|
||||
span.j-key /* keyword */
|
||||
{
|
||||
/* font-weight:bold; */
|
||||
color: Purple;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.j-str /* string constants */
|
||||
{
|
||||
color: Blue;
|
||||
}
|
||||
|
||||
span.j-chr /* char constants */
|
||||
{
|
||||
color: Blue;
|
||||
}
|
||||
|
||||
span.j-num /* number constants */
|
||||
{
|
||||
}
|
||||
|
||||
span.j-sym /* symbols, punctuation */
|
||||
{
|
||||
}
|
||||
|
||||
span.j-typ /* primitive types */
|
||||
{
|
||||
color: Purple;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.j-jdoc /* javadoc */
|
||||
{
|
||||
color: DarkSlateBlue;
|
||||
}
|
||||
|
||||
span.j-jdoc-key /* javadoc keyword */
|
||||
{
|
||||
color: MediumSlateBlue;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.j-jdoc-html /* javadoc html tag */
|
||||
{
|
||||
color: SlateGray;
|
||||
}
|
||||
|
||||
span.j-jdoc-link /* javadoc link */
|
||||
{
|
||||
color: Blue;
|
||||
}
|
||||
|
||||
span.j-undef /* undefined */
|
||||
{
|
||||
}
|
||||
|
||||
span.j-hl /* highlight */
|
||||
{
|
||||
text-decoration: none;
|
||||
background-color: #FFFFB0;
|
||||
}
|
|
@ -7,9 +7,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
|
|||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.8
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
|
@ -98,7 +98,8 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=ignore
|
|||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
||||
org.eclipse.jdt.core.compiler.release=disabled
|
||||
org.eclipse.jdt.core.compiler.source=1.8
|
||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
|
||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
<!-- before importing common-targets.xml -->
|
||||
<condition property="alt.src.dir" value="out/tmp-src-pre8">
|
||||
<or>
|
||||
<equals arg1="${ant.java.version}" arg2="1.6"/>
|
||||
<equals arg1="${ant.java.version}" arg2="1.7"/>
|
||||
</or>
|
||||
</condition>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-translit-tests"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-translit"/>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue