Coverage Report - net.sf.jmatchparser.util.charset.MoreAliasesCharset
 
Classes in this File Line Coverage Branch Coverage Complexity
MoreAliasesCharset
33%
4/12
0%
0/4
1,6
 
 1  
 /*
 2  
  * Copyright (c) 2009 - 2011 Michael Schierl
 3  
  * 
 4  
  * All rights reserved.
 5  
  * 
 6  
  * Redistribution and use in source and binary forms, with or without
 7  
  * modification, are permitted provided that the following conditions
 8  
  * are met:
 9  
  * 
 10  
  * - Redistributions of source code must retain the above copyright notice,
 11  
  *   this list of conditions and the following disclaimer.
 12  
  *   
 13  
  * - Redistributions in binary form must reproduce the above copyright
 14  
  *   notice, this list of conditions and the following disclaimer in the
 15  
  *   documentation and/or other materials provided with the distribution.
 16  
  *   
 17  
  * - Neither name of the copyright holders nor the names of its
 18  
  *   contributors may be used to endorse or promote products derived from
 19  
  *   this software without specific prior written permission.
 20  
  *   
 21  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND THE CONTRIBUTORS
 22  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 23  
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 24  
  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 25  
  * HOLDERS OR THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 26  
  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 27  
  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 28  
  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 29  
  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 30  
  * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 31  
  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 32  
  */
 33  
 package net.sf.jmatchparser.util.charset;
 34  
 
 35  
 import java.nio.charset.Charset;
 36  
 import java.nio.charset.CharsetDecoder;
 37  
 import java.nio.charset.CharsetEncoder;
 38  
 
 39  
 class MoreAliasesCharset extends Charset {
 40  
 
 41  17
         private Charset basicCharset = null;
 42  
         private final String basicCharsetName;
 43  
 
 44  
         protected MoreAliasesCharset(String basicCharsetName, String canonicalName, String... aliases) {
 45  17
                 super(canonicalName, aliases);
 46  17
                 this.basicCharsetName = basicCharsetName;
 47  17
         }
 48  
 
 49  
         @Override
 50  
         public boolean contains(Charset cs) {
 51  0
                 if (cs == this)
 52  0
                         return true;
 53  0
                 return false;
 54  
         }
 55  
 
 56  
         @Override
 57  
         public CharsetDecoder newDecoder() {
 58  0
                 return getBasicCharset().newDecoder();
 59  
         }
 60  
 
 61  
         private synchronized Charset getBasicCharset() {
 62  0
                 if (basicCharset == null) {
 63  0
                         basicCharset = Charset.forName(basicCharsetName);
 64  
                 }
 65  0
                 return basicCharset;
 66  
         }
 67  
 
 68  
         @Override
 69  
         public CharsetEncoder newEncoder() {
 70  0
                 return getBasicCharset().newEncoder();
 71  
         }
 72  
 }