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 false 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 CharsetUTF32LE extends CharsetUTF32 {
     14     public CharsetUTF32LE(String icuCanonicalName, String javaCanonicalName, String[] aliases) {
     15         super(icuCanonicalName, javaCanonicalName, aliases);
     16     }
     17 }
     18