Home | History | Annotate | Download | only in charset
      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-32 converter without extra setup work.
     12  */
     13 class CharsetUTF32BE extends CharsetUTF32 {
     14     public CharsetUTF32BE(String icuCanonicalName, String javaCanonicalName, String[] aliases) {
     15         super(icuCanonicalName, javaCanonicalName, aliases);
     16     }
     17 }
     18