< prev index next >

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

Print this page
rev 57619 : imported patch 8174270

*** 1,7 **** /* ! * Copyright (c) 2019, 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) 2019, 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
*** 25,44 **** // (c) 2018 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html#License // created: 2018may04 Markus W. Scherer ! package sun.text.normalizer; import java.io.DataOutputStream; import java.io.IOException; import java.io.UncheckedIOException; import java.io.OutputStream; import java.nio.ByteBuffer; import java.nio.ByteOrder; ! import static sun.text.normalizer.NormalizerImpl.UTF16Plus; /** * Immutable Unicode code point trie. * Fast, reasonably compact, map from Unicode code points (U+0000..U+10FFFF) to integer values. * For details see http://site.icu-project.org/design/struct/utrie --- 25,46 ---- // (c) 2018 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html#License // created: 2018may04 Markus W. Scherer ! package jdk.internal.icu.util; ! ! import jdk.internal.icu.impl.ICUBinary; import java.io.DataOutputStream; import java.io.IOException; import java.io.UncheckedIOException; import java.io.OutputStream; import java.nio.ByteBuffer; import java.nio.ByteOrder; ! import static jdk.internal.icu.impl.NormalizerImpl.UTF16Plus; /** * Immutable Unicode code point trie. * Fast, reasonably compact, map from Unicode code points (U+0000..U+10FFFF) to integer values. * For details see http://site.icu-project.org/design/struct/utrie
< prev index next >