< prev index next >

src/java.base/share/classes/jdk/internal/icu/util/VersionInfo.java

Print this page
rev 57619 : [mq]: 8174270

*** 1,7 **** /* ! * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 32,52 **** * US and International patents. This notice and attribution to IBM may not * * to removed. * ******************************************************************************* */ ! package sun.text.normalizer; import java.util.HashMap; /** * Class to store version numbers of the form major.minor.milli.micro. * @author synwee * @stable ICU 2.6 */ public final class VersionInfo { // public methods ------------------------------------------------------ /** * Returns an instance of VersionInfo with the argument version. --- 32,62 ---- * US and International patents. This notice and attribution to IBM may not * * to removed. * ******************************************************************************* */ ! package jdk.internal.icu.util; import java.util.HashMap; /** * Class to store version numbers of the form major.minor.milli.micro. * @author synwee * @stable ICU 2.6 */ public final class VersionInfo { + // public data members ------------------------------------------------- + + /** + * Data version string for ICU's internal data. + * Used for appending to data path (e.g. icudt43b) + * @internal + * @deprecated This API is ICU internal only. + */ + @Deprecated + public static final String ICU_DATA_VERSION_PATH = "64b"; // public methods ------------------------------------------------------ /** * Returns an instance of VersionInfo with the argument version.
< prev index next >