src/java.base/share/classes/java/io/FilterReader.java
changeset 58288 48e480e56aad
parent 58242 94bb65cb37d3
child 58679 9c3209ff7550
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
    26 package java.io;
    26 package java.io;
    27 
    27 
    28 
    28 
    29 /**
    29 /**
    30  * Abstract class for reading filtered character streams.
    30  * Abstract class for reading filtered character streams.
    31  * The abstract class <code>FilterReader</code> itself
    31  * The abstract class {@code FilterReader} itself
    32  * provides default methods that pass all requests to
    32  * provides default methods that pass all requests to
    33  * the contained stream. Subclasses of <code>FilterReader</code>
    33  * the contained stream. Subclasses of {@code FilterReader}
    34  * should override some of these methods and may also provide
    34  * should override some of these methods and may also provide
    35  * additional methods and fields.
    35  * additional methods and fields.
    36  *
    36  *
    37  * @author      Mark Reinhold
    37  * @author      Mark Reinhold
    38  * @since       1.1
    38  * @since       1.1
    47 
    47 
    48     /**
    48     /**
    49      * Creates a new filtered reader.
    49      * Creates a new filtered reader.
    50      *
    50      *
    51      * @param in  a Reader object providing the underlying stream.
    51      * @param in  a Reader object providing the underlying stream.
    52      * @throws NullPointerException if <code>in</code> is <code>null</code>
    52      * @throws NullPointerException if {@code in} is {@code null}
    53      */
    53      */
    54     protected FilterReader(Reader in) {
    54     protected FilterReader(Reader in) {
    55         super(in);
    55         super(in);
    56         this.in = in;
    56         this.in = in;
    57     }
    57     }