|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| CharEncoderUnicode.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package org.objectledge.encodings.encoders; | |
| 2 | ||
| 3 | /** | |
| 4 | * Encoder for UTF-16 character set. | |
| 5 | * | |
| 6 | * @author <a href="mailto:dgajda@caltha.pl">Damian Gajda</a> | |
| 7 | * @version $Id: CharEncoderUnicode.java,v 1.1 2004/02/02 18:59:00 zwierzem Exp $ | |
| 8 | */ | |
| 9 | public class CharEncoderUnicode extends CharEncoderUTF | |
| 10 | { | |
| 11 | /** Constructor. */ | |
| 12 | 184 | public CharEncoderUnicode() |
| 13 | { | |
| 14 | 184 | this.encodingName = "Unicode"; |
| 15 | } | |
| 16 | } |
|
||||||||||