0N/A/*
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A *
0N/A */
0N/A
0N/A/*
0N/A *
0N/A * (C) Copyright IBM Corp. 2003 - All Rights Reserved
0N/A */
0N/A
0N/Apackage sun.font;
0N/A
0N/Apublic final class Script {
0N/A
0N/A public static final int INVALID_CODE = -1;
0N/A public static final int COMMON = 0; /* Zyyy */
0N/A public static final int INHERITED = 1; /* Qaai */
0N/A
0N/A public static final int ARABIC = 2; /* Arab */
0N/A public static final int ARMENIAN = 3; /* Armn */
0N/A public static final int BENGALI = 4; /* Beng */
0N/A public static final int BOPOMOFO = 5; /* Bopo */
0N/A public static final int CHEROKEE = 6; /* Cher */
0N/A public static final int COPTIC = 7; /* Qaac */
0N/A public static final int CYRILLIC = 8; /* Cyrl (Cyrs) */
0N/A public static final int DESERET = 9; /* Dsrt */
0N/A public static final int DEVANAGARI = 10; /* Deva */
0N/A public static final int ETHIOPIC = 11; /* Ethi */
0N/A public static final int GEORGIAN = 12; /* Geor (Geon; Geoa) */
0N/A public static final int GOTHIC = 13; /* Goth */
0N/A public static final int GREEK = 14; /* Grek */
0N/A public static final int GUJARATI = 15; /* Gujr */
0N/A public static final int GURMUKHI = 16; /* Guru */
0N/A public static final int HAN = 17; /* Hani */
0N/A public static final int HANGUL = 18; /* Hang */
0N/A public static final int HEBREW = 19; /* Hebr */
0N/A public static final int HIRAGANA = 20; /* Hira */
0N/A public static final int KANNADA = 21; /* Knda */
0N/A public static final int KATAKANA = 22; /* Kana */
0N/A public static final int KHMER = 23; /* Khmr */
0N/A public static final int LAO = 24; /* Laoo */
0N/A public static final int LATIN = 25; /* Latn (Latf; Latg) */
0N/A public static final int MALAYALAM = 26; /* Mlym */
0N/A public static final int MONGOLIAN = 27; /* Mong */
0N/A public static final int MYANMAR = 28; /* Mymr */
0N/A public static final int OGHAM = 29; /* Ogam */
0N/A public static final int OLD_ITALIC = 30; /* Ital */
0N/A public static final int ORIYA = 31; /* Orya */
0N/A public static final int RUNIC = 32; /* Runr */
0N/A public static final int SINHALA = 33; /* Sinh */
0N/A public static final int SYRIAC = 34; /* Syrc (Syrj; Syrn; Syre) */
0N/A public static final int TAMIL = 35; /* Taml */
0N/A public static final int TELUGU = 36; /* Telu */
0N/A public static final int THAANA = 37; /* Thaa */
0N/A public static final int THAI = 38; /* Thai */
0N/A public static final int TIBETAN = 39; /* Tibt */
0N/A public static final int CANADIAN_ABORIGINAL = 40; /* Cans */
0N/A public static final int UCAS = CANADIAN_ABORIGINAL; /* Cans */
0N/A public static final int YI = 41; /* Yiii */
0N/A public static final int TAGALOG = 42; /* Tglg */
0N/A public static final int HANUNOO = 43; /* Hano */
0N/A public static final int BUHID = 44; /* Buhd */
0N/A public static final int TAGBANWA = 45; /* Tagb */
0N/A public static final int CODE_LIMIT = 46;
0N/A}