jdk/src/java.base/share/classes/java/lang/Readable.java
changeset 32033 bf24e33c7919
parent 25859 3317bb8137f4
equal deleted inserted replaced
32032:22badc53802f 32033:bf24e33c7919
    26 package java.lang;
    26 package java.lang;
    27 
    27 
    28 import java.io.IOException;
    28 import java.io.IOException;
    29 
    29 
    30 /**
    30 /**
    31  * A <tt>Readable</tt> is a source of characters. Characters from
    31  * A {@code Readable} is a source of characters. Characters from
    32  * a <tt>Readable</tt> are made available to callers of the read
    32  * a {@code Readable} are made available to callers of the read
    33  * method via a {@link java.nio.CharBuffer CharBuffer}.
    33  * method via a {@link java.nio.CharBuffer CharBuffer}.
    34  *
    34  *
    35  * @since 1.5
    35  * @since 1.5
    36  */
    36  */
    37 public interface Readable {
    37 public interface Readable {