8305206: Add @spec tags in java.base/java.* (part 1)

Reviewed-by: alanb, naoto, darcy, lancea, dfuchs, iris, mchung
This commit is contained in:
Jonathan Gibbons 2023-04-04 00:09:38 +00:00
parent ccbb0e8d89
commit c6bd489cc8
60 changed files with 268 additions and 2 deletions

View file

@ -47,6 +47,8 @@ import static java.util.zip.ZipUtils.NIO_ACCESS;
* {@link NullPointerException} to be thrown.
* </p>
*
* @spec https://www.rfc-editor.org/info/rfc3720
* RFC 3720: Internet Small Computer Systems Interface (iSCSI)
* @since 9
*/
public final class CRC32C implements Checksum {

View file

@ -72,6 +72,14 @@
* <li>Adler-32 checksum is described in RFC 1950 (above)
* </ul>
*
* @spec https://www.rfc-editor.org/info/rfc1950
* RFC 1950: ZLIB Compressed Data Format Specification version 3.3
* @spec https://www.rfc-editor.org/info/rfc1951
* RFC 1951: DEFLATE Compressed Data Format Specification version 1.3
* @spec https://www.rfc-editor.org/info/rfc1952
* RFC 1952: GZIP file format specification version 4.3
* @spec https://www.rfc-editor.org/info/rfc3720
* RFC 3720: Internet Small Computer Systems Interface (iSCSI)
* @since 1.1
*/
package java.util.zip;