| 1 | /* Copyright (C) 1998, 1999, 2001, 2002, 2003 Free Software Foundation
|
|---|
| 2 |
|
|---|
| 3 | This file is part of libgcj.
|
|---|
| 4 |
|
|---|
| 5 | This software is copyrighted work licensed under the terms of the
|
|---|
| 6 | Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|---|
| 7 | details. */
|
|---|
| 8 |
|
|---|
| 9 | package java.io;
|
|---|
| 10 |
|
|---|
| 11 | import java.nio.channels.FileChannel;
|
|---|
| 12 |
|
|---|
| 13 | /**
|
|---|
| 14 | * @author Warren Levy <[email protected]>
|
|---|
| 15 | * @date October 28, 1998.
|
|---|
| 16 | */
|
|---|
| 17 | /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
|
|---|
| 18 | * "The Java Language Specification", ISBN 0-201-63451-1
|
|---|
| 19 | * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
|
|---|
| 20 | * Status: Believed complete and correct.
|
|---|
| 21 | */
|
|---|
| 22 |
|
|---|
| 23 | public class FileInputStream extends InputStream
|
|---|
|
|---|