X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=libjava%2Fgnu%2Fgcj%2Fconvert%2FInput_iconv.java;fp=libjava%2Fgnu%2Fgcj%2Fconvert%2FInput_iconv.java;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=a87878eb0cbc267003b6d356bde975854b40f250;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/gnu/gcj/convert/Input_iconv.java b/libjava/gnu/gcj/convert/Input_iconv.java deleted file mode 100644 index a87878eb..00000000 --- a/libjava/gnu/gcj/convert/Input_iconv.java +++ /dev/null @@ -1,43 +0,0 @@ -// Input_iconv.java -- Java side of iconv() reader. - -/* Copyright (C) 2000, 2001 Free Software Foundation - - This file is part of libgcj. - -This software is copyrighted work licensed under the terms of the -Libgcj License. Please consult the file "LIBGCJ_LICENSE" for -details. */ - -package gnu.gcj.convert; -import gnu.gcj.RawData; -import java.io.UnsupportedEncodingException; - -/** - * Convert bytes in some iconv-supported encoding to Unicode. - * @author Tom Tromey - * @date January 30, 2000 - */ - -public class Input_iconv extends BytesToUnicode -{ - public Input_iconv (String encoding) throws UnsupportedEncodingException - { - this.encoding = encoding; - this.handle = null; - init (encoding); - } - - public String getName() { return encoding; } - - public native void finalize (); - private native void init (String encoding) - throws UnsupportedEncodingException; - public native int read (char[] outbuffer, int outpos, int count); - public native void done (); - - // The encoding we're using. - private String encoding; - - // The iconv handle. - private RawData handle; -}