]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/classes/charset/src/com/ibm/icu/charset/CharsetUTF16BE.java
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / classes / charset / src / com / ibm / icu / charset / CharsetUTF16BE.java
1 /**
2  *******************************************************************************
3  * Copyright (C) 2006-2008, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.charset;
8
9 /**
10  * The purpose of this class is to set isBigEndian to true and isEndianSpecified to true in the super class, and to
11  * allow the Charset framework to open the variant UTF-16 converter without extra setup work.
12  */
13 class CharsetUTF16BE extends CharsetUTF16 {
14     public CharsetUTF16BE(String icuCanonicalName, String javaCanonicalName, String[] aliases) {
15         super(icuCanonicalName, javaCanonicalName, aliases);
16     }
17 }