jdk/src/share/classes/sun/nio/ch/SelChImpl.java
changeset 2433 9f0ab7f726b8
parent 2 90ce3da70b43
child 5506 202f599c92aa
equal deleted inserted replaced
2427:f35f516befc3 2433:9f0ab7f726b8
    23  * have any questions.
    23  * have any questions.
    24  */
    24  */
    25 
    25 
    26 package sun.nio.ch;
    26 package sun.nio.ch;
    27 
    27 
       
    28 import java.nio.channels.Channel;
    28 import java.io.FileDescriptor;
    29 import java.io.FileDescriptor;
    29 import java.io.IOException;
    30 import java.io.IOException;
    30 
    31 
    31 
    32 
    32 /**
    33 /**
    33  * An interface that allows translation (and more!).
    34  * An interface that allows translation (and more!).
    34  *
    35  *
    35  * @since 1.4
    36  * @since 1.4
    36  */
    37  */
    37 
    38 
    38 interface SelChImpl {
    39 interface SelChImpl extends Channel {
    39 
    40 
    40     FileDescriptor getFD();
    41     FileDescriptor getFD();
    41 
    42 
    42     int getFDVal();
    43     int getFDVal();
    43 
    44