This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [Patch] java.net and java.nio fixes
- From: Tom Tromey <tromey at redhat dot com>
- To: Michael Koch <konqueror at gmx dot de>
- Cc: java-patches at gcc dot gnu dot org
- Date: 20 Nov 2002 10:12:14 -0700
- Subject: Re: [Patch] java.net and java.nio fixes
- References: <200211201722.10869.konqueror@gmx.de>
- Reply-to: tromey at redhat dot com
>>>>> "Michael" == Michael Koch <konqueror@gmx.de> writes:
Michael> + * java/io/FileInputStream.java
Michael> + (getChannel): New method.
Note you should also mention new fields in the ChangeLog.
Michael> +++ java/io/FileInputStream.java 20 Nov 2002 16:17:57 -0000
Michael> + private FileChannel ch;
Let's talk about the long term here a little.
What is the best way to do this? Do we want a new field like this?
Another choice would be to reimplement java.io in terms of java.nio.
Tom