< prev index next >

src/java.desktop/share/classes/java/awt/font/NumericShaper.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2015, 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) 2000, 2017, 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
*** 104,119 **** * * <p>A Unicode range may have more than one set of decimal digits. If * multiple decimal digits sets are specified for the same Unicode * range, one of the sets will take precedence as follows. * ! * <table border=1 cellspacing=3 cellpadding=0 summary="NumericShaper constants precedence."> * <tr> * <th class="TableHeadingColor">Unicode Range</th> * <th class="TableHeadingColor">{@code NumericShaper} Constants</th> * <th class="TableHeadingColor">Precedence</th> * </tr> * <tr> * <td rowspan="2">Arabic</td> * <td>{@link NumericShaper#ARABIC NumericShaper.ARABIC}<br> * {@link NumericShaper#EASTERN_ARABIC NumericShaper.EASTERN_ARABIC}</td> * <td>{@link NumericShaper#EASTERN_ARABIC NumericShaper.EASTERN_ARABIC}</td> --- 104,123 ---- * * <p>A Unicode range may have more than one set of decimal digits. If * multiple decimal digits sets are specified for the same Unicode * range, one of the sets will take precedence as follows. * ! * <table class="plain"> ! * <caption>NumericShaper constants precedence</caption> ! * <thead> * <tr> * <th class="TableHeadingColor">Unicode Range</th> * <th class="TableHeadingColor">{@code NumericShaper} Constants</th> * <th class="TableHeadingColor">Precedence</th> * </tr> + * </thead> + * <tbody> * <tr> * <td rowspan="2">Arabic</td> * <td>{@link NumericShaper#ARABIC NumericShaper.ARABIC}<br> * {@link NumericShaper#EASTERN_ARABIC NumericShaper.EASTERN_ARABIC}</td> * <td>{@link NumericShaper#EASTERN_ARABIC NumericShaper.EASTERN_ARABIC}</td>
*** 121,136 **** --- 125,143 ---- * <tr> * <td>{@link NumericShaper.Range#ARABIC}<br> * {@link NumericShaper.Range#EASTERN_ARABIC}</td> * <td>{@link NumericShaper.Range#EASTERN_ARABIC}</td> * </tr> + * </tbody> + * <tbody> * <tr> * <td>Tai Tham</td> * <td>{@link NumericShaper.Range#TAI_THAM_HORA}<br> * {@link NumericShaper.Range#TAI_THAM_THAM}</td> * <td>{@link NumericShaper.Range#TAI_THAM_THAM}</td> * </tr> + * </tbody> * </table> * * @since 1.4 */
< prev index next >