blob: b1bb374d8ccda925ecebe922bfc4898f77d15bdb [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2006-2008, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.charset;
/**
* The purpose of this class is to set isBigEndian to true and isEndianSpecified to true in the super class, and to
* allow the Charset framework to open the variant UTF-16 converter without extra setup work.
*/
class CharsetUTF16BE extends CharsetUTF16 {
public CharsetUTF16BE(String icuCanonicalName, String javaCanonicalName, String[] aliases) {
super(icuCanonicalName, javaCanonicalName, aliases);
}
}