jdk/src/jdk.charsets/share/classes/module-info.java
changeset 45528 1e8c2f062ad3
parent 44417 a431edba1629
child 45654 5ff2edfa03fc
equal deleted inserted replaced
45527:09cded555a99 45528:1e8c2f062ad3
    22  * or visit www.oracle.com if you need additional information or have any
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 /**
    26 /**
    27  * {@link java.nio.charset.Charset Charset} provider for the charsets that
    27  * Provides {@link java.nio.charset.Charset charsets} that
    28  * are not in {@code java.base} (mostly double byte and IBM charsets).
    28  * are not in {@code java.base} (mostly double byte and IBM charsets).
       
    29  *
       
    30  * @provides java.nio.charset.spi.CharsetProvider
    29  *
    31  *
    30  * @moduleGraph
    32  * @moduleGraph
    31  * @since 9
    33  * @since 9
    32  */
    34  */
    33 module jdk.charsets {
    35 module jdk.charsets {
    34     provides java.nio.charset.spi.CharsetProvider
    36     provides java.nio.charset.spi.CharsetProvider
    35         with sun.nio.cs.ext.ExtendedCharsets;
    37         with sun.nio.cs.ext.ExtendedCharsets;
    36 }
    38 }
    37