diff options
author | Mark Wielaard <mark@klomp.org> | 2002-05-06 16:19:19 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2002-05-06 16:19:19 +0000 |
commit | 07ced61eb09d4d4aa9f25bf67a0519f1fdccdb4d (patch) | |
tree | 020f36db6b15868dd6dc27c9e198de52b89a91b6 /java/sql | |
parent | 363d14124673438ef6402c7a65ab95f68188d00d (diff) | |
download | classpath-07ced61eb09d4d4aa9f25bf67a0519f1fdccdb4d.tar.gz |
* java/awt/Choice.java: Fix javadoc spelling mistake.
* java/awt/im/spi/InputMethodContext.java: Import HeadlessException.
* java/awt/image/PixelGrabber.java: Fix javadoc spelling mistake.
* java/io/File.java: Likewise.
* java/lang/String.java: Likewise.
* java/security/AccessController.java: Likewise.
* java/sql/DatabaseMetaData.java: Likewise.
* java/util/Arrays.java: Likewise.
* java/util/prefs/AbstractPreferences.java: Likewise.
* java/util/prefs/Preferences.java: Likewise.
* java/util/zip/Inflater.java: Likewise.
* java/util/regex/PatternSyntaxException.java: New class.
Diffstat (limited to 'java/sql')
-rw-r--r-- | java/sql/DatabaseMetaData.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/sql/DatabaseMetaData.java b/java/sql/DatabaseMetaData.java index c2f389b88..047ec455b 100644 --- a/java/sql/DatabaseMetaData.java +++ b/java/sql/DatabaseMetaData.java @@ -500,7 +500,7 @@ supportsMixedCaseIdentifiers() throws SQLException; * This method tests whether or not the database treats mixed case * identifiers as all upper case. * - * @exception <code>true</code> if the database treats all identifiers as + * @return <code>true</code> if the database treats all identifiers as * upper case, <code>false</code> otherwise. * * @exception SQLException If an error occurs. @@ -514,7 +514,7 @@ storesUpperCaseIdentifiers() throws SQLException; * This method tests whether or not the database treats mixed case * identifiers as all lower case. * - * @exception <code>true</code> if the database treats all identifiers as + * @return <code>true</code> if the database treats all identifiers as * lower case, <code>false</code> otherwise. * * @exception SQLException If an error occurs. @@ -556,7 +556,7 @@ supportsMixedCaseQuotedIdentifiers() throws SQLException; * This method tests whether or not the database treats mixed case * quoted identifiers as all upper case. * - * @exception <code>true</code> if the database treats all quoted identifiers + * @return <code>true</code> if the database treats all quoted identifiers * as upper case, <code>false</code> otherwise. * * @exception SQLException If an error occurs. @@ -570,7 +570,7 @@ storesUpperCaseQuotedIdentifiers() throws SQLException; * This method tests whether or not the database treats mixed case * quoted identifiers as all lower case. * - * @exception <code>true</code> if the database treats all quoted identifiers + * @return <code>true</code> if the database treats all quoted identifiers * as lower case, <code>false</code> otherwise. * * @exception SQLException If an error occurs. |