KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > nio > channels > ByteChannel


1 /*
2  * @(#)ByteChannel.java 1.10 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.nio.channels;
9
10 import java.io.IOException JavaDoc;
11
12
13 /**
14  * A channel that can read and write bytes. This interface simply unifies
15  * {@link ReadableByteChannel} and {@link WritableByteChannel}; it does not
16  * specify any new operations.
17  *
18  * @author Mark Reinhold
19  * @author JSR-51 Expert Group
20  * @version 1.10, 03/12/19
21  * @since 1.4
22  */

23
24 public interface ByteChannel
25     extends ReadableByteChannel JavaDoc, WritableByteChannel JavaDoc
26 {
27
28 }
29
Popular Tags