jdk/src/java.desktop/unix/classes/sun/font/X11KSC5601.java

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.awt.motif;
  27 
  28 import java.nio.CharBuffer;
  29 import java.nio.ByteBuffer;
  30 import java.nio.charset.*;
  31 import sun.nio.cs.*;
  32 import sun.nio.cs.ext.*;
  33 import static sun.nio.cs.CharsetMapping.*;
  34 
  35 public class X11KSC5601 extends Charset {
  36     public X11KSC5601 () {
  37         super("X11KSC5601", null);
  38     }
  39     public CharsetEncoder newEncoder() {
  40         return new Encoder(this);
  41     }
  42     public CharsetDecoder newDecoder() {
  43         return new Decoder(this);
  44     }
  45 
  46     public boolean contains(Charset cs) {
  47         return cs instanceof X11KSC5601;
  48     }
  49 
  50     private class Encoder extends CharsetEncoder {
  51         private DoubleByte.Encoder enc = (DoubleByte.Encoder)new EUC_KR().newEncoder();
  52 




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.font;
  27 
  28 import java.nio.CharBuffer;
  29 import java.nio.ByteBuffer;
  30 import java.nio.charset.*;
  31 import sun.nio.cs.*;

  32 import static sun.nio.cs.CharsetMapping.*;
  33 
  34 public class X11KSC5601 extends Charset {
  35     public X11KSC5601 () {
  36         super("X11KSC5601", null);
  37     }
  38     public CharsetEncoder newEncoder() {
  39         return new Encoder(this);
  40     }
  41     public CharsetDecoder newDecoder() {
  42         return new Decoder(this);
  43     }
  44 
  45     public boolean contains(Charset cs) {
  46         return cs instanceof X11KSC5601;
  47     }
  48 
  49     private class Encoder extends CharsetEncoder {
  50         private DoubleByte.Encoder enc = (DoubleByte.Encoder)new EUC_KR().newEncoder();
  51