Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JDK-8253936 Replace <code>...</code> with {@code ...} for java.sql #707

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 90 additions & 90 deletions src/java.sql/share/classes/java/sql/Array.java

Large diffs are not rendered by default.

212 changes: 106 additions & 106 deletions src/java.sql/share/classes/java/sql/BatchUpdateException.java

Large diffs are not rendered by default.

1,018 changes: 509 additions & 509 deletions src/java.sql/share/classes/java/sql/CallableStatement.java

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/java.sql/share/classes/java/sql/ClientInfoStatus.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -29,7 +29,7 @@

/**
* Enumeration for status of the reason that a property could not be set
* via a call to <code>Connection.setClientInfo</code>
* via a call to {@code Connection.setClientInfo}
* @since 1.6
*/

626 changes: 313 additions & 313 deletions src/java.sql/share/classes/java/sql/Connection.java

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions src/java.sql/share/classes/java/sql/DataTruncation.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -26,29 +26,29 @@
package java.sql;

/**
* An exception thrown as a <code>DataTruncation</code> exception
* An exception thrown as a {@code DataTruncation} exception
* (on writes) or reported as a
* <code>DataTruncation</code> warning (on reads)
* {@code DataTruncation} warning (on reads)
* when a data values is unexpectedly truncated for reasons other than its having
* exceeded <code>MaxFieldSize</code>.
* exceeded {@code MaxFieldSize}.
*
* <P>The SQLstate for a <code>DataTruncation</code> during read is <code>01004</code>.
* <P>The SQLstate for a <code>DataTruncation</code> during write is <code>22001</code>.
* <P>The SQLstate for a {@code DataTruncation} during read is {@code 01004}.
* <P>The SQLstate for a {@code DataTruncation} during write is {@code 22001}.
*
* @since 1.1
*/

public class DataTruncation extends SQLWarning {

/**
* Creates a <code>DataTruncation</code> object
* Creates a {@code DataTruncation} object
* with the SQLState initialized
* to 01004 when <code>read</code> is set to <code>true</code> and 22001
* when <code>read</code> is set to <code>false</code>,
* to 01004 when {@code read} is set to {@code true} and 22001
* when {@code read} is set to {@code false},
* the reason set to "Data truncation", the
* vendor code set to 0, and
* the other fields set to the given values.
* The <code>cause</code> is not initialized, and may subsequently be
* The {@code cause} is not initialized, and may subsequently be
* initialized by a call to the
* {@link Throwable#initCause(java.lang.Throwable)} method.
*
@@ -71,10 +71,10 @@ public DataTruncation(int index, boolean parameter,
}

/**
* Creates a <code>DataTruncation</code> object
* Creates a {@code DataTruncation} object
* with the SQLState initialized
* to 01004 when <code>read</code> is set to <code>true</code> and 22001
* when <code>read</code> is set to <code>false</code>,
* to 01004 when {@code read} is set to {@code true} and 22001
* when {@code read} is set to {@code false},
* the reason set to "Data truncation", the
* vendor code set to 0, and
* the other fields set to the given values.
@@ -84,8 +84,8 @@ public DataTruncation(int index, boolean parameter,
* @param read true if a read was truncated
* @param dataSize the original size of the data
* @param transferSize the size after truncation
* @param cause the underlying reason for this <code>DataTruncation</code>
* (which is saved for later retrieval by the <code>getCause()</code> method);
* @param cause the underlying reason for this {@code DataTruncation}
* (which is saved for later retrieval by the {@code getCause()} method);
* may be null indicating the cause is non-existent or unknown.
*
* @since 1.6
@@ -105,7 +105,7 @@ public DataTruncation(int index, boolean parameter,
* Retrieves the index of the column or parameter that was truncated.
*
* <P>This may be -1 if the column or parameter index is unknown, in
* which case the <code>parameter</code> and <code>read</code> fields should be ignored.
* which case the {@code parameter} and {@code read} fields should be ignored.
*
* @return the index of the truncated parameter or column value
*/
@@ -117,8 +117,8 @@ public int getIndex() {
* Indicates whether the value truncated was a parameter value or
* a column value.
*
* @return <code>true</code> if the value truncated was a parameter;
* <code>false</code> if it was a column value
* @return {@code true} if the value truncated was a parameter;
* {@code false} if it was a column value
*/
public boolean getParameter() {
return parameter;
@@ -127,8 +127,8 @@ public boolean getParameter() {
/**
* Indicates whether or not the value was truncated on a read.
*
* @return <code>true</code> if the value was truncated when read from
* the database; <code>false</code> if the data was truncated on a write
* @return {@code true} if the value was truncated when read from
* the database; {@code false} if the data was truncated on a write
*/
public boolean getRead() {
return read;
@@ -137,7 +137,7 @@ public boolean getRead() {
/**
* Gets the number of bytes of data that should have been transferred.
* This number may be approximate if data conversions were being
* performed. The value may be <code>-1</code> if the size is unknown.
* performed. The value may be {@code -1} if the size is unknown.
*
* @return the number of bytes of data that should have been transferred
*/
@@ -147,7 +147,7 @@ public int getDataSize() {

/**
* Gets the number of bytes of data actually transferred.
* The value may be <code>-1</code> if the size is unknown.
* The value may be {@code -1} if the size is unknown.
*
* @return the number of bytes of data actually transferred
*/
Loading