diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 18:49:51 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 18:49:51 +0000 |
commit | cabab96a6f79bc5549b29def5b50432b4cc440ef (patch) | |
tree | 5f8e4e09e41fddb2564b5726cad645fa7ddb6ef8 /libjava/java/sql/Clob.java | |
parent | a70e2f3341882b4d5ec11cde619e7135ee4f9626 (diff) | |
download | ppe42-gcc-cabab96a6f79bc5549b29def5b50432b4cc440ef.tar.gz ppe42-gcc-cabab96a6f79bc5549b29def5b50432b4cc440ef.zip |
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/sql/Array.java,
java/sql/Blob.java,
java/sql/CallableStatement.java,
java/sql/Clob.java,
java/sql/Connection.java,
java/sql/DatabaseMetaData.java,
java/sql/Driver.java,
java/sql/ParameterMetaData.java,
java/sql/PreparedStatement.java,
java/sql/Ref.java,
java/sql/ResultSet.java,
java/sql/ResultSetMetaData.java,
java/sql/SQLData.java,
java/sql/SQLInput.java,
java/sql/SQLOutput.java,
java/sql/Savepoint.java,
java/sql/Statement.java,
java/sql/Struct.java:
Removed redundant modifiers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72356 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/sql/Clob.java')
-rw-r--r-- | libjava/java/sql/Clob.java | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libjava/java/sql/Clob.java b/libjava/java/sql/Clob.java index a256512550b..f764f5cfcc2 100644 --- a/libjava/java/sql/Clob.java +++ b/libjava/java/sql/Clob.java @@ -57,7 +57,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public long length() throws SQLException; + long length() throws SQLException; /** * This method returns the specified portion of the CLOB as a @@ -70,7 +70,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public String getSubString(long pos, int length) throws SQLException; + String getSubString(long pos, int length) throws SQLException; /** * This method returns a character stream that reads the contents of the @@ -80,7 +80,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public Reader getCharacterStream() throws SQLException; + Reader getCharacterStream() throws SQLException; /** * This method returns a byte stream that reads the contents of the @@ -90,7 +90,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public InputStream getAsciiStream() throws SQLException; + InputStream getAsciiStream() throws SQLException; /** * This method returns the index into the CLOB of the first occurrence of @@ -106,7 +106,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public long position(String searchstr, long start) throws SQLException; + long position(String searchstr, long start) throws SQLException; /** * This method returns the index into the CLOB of the first occurrence of @@ -122,31 +122,31 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public long position(Clob searchstr, long start) throws SQLException; + long position(Clob searchstr, long start) throws SQLException; /** * @since 1.4 */ - public int setString(long pos, String str) throws SQLException; + int setString(long pos, String str) throws SQLException; /** * @since 1.4 */ - public int setString(long pos, String str, int offset, int len) + int setString(long pos, String str, int offset, int len) throws SQLException; /** * @since 1.4 */ - public OutputStream setAsciiStream(long pos) throws SQLException; + OutputStream setAsciiStream(long pos) throws SQLException; /** * @since 1.4 */ - public Writer setCharacterStream(long pos) throws SQLException; + Writer setCharacterStream(long pos) throws SQLException; /** * @since 1.4 */ - public void truncate(long len) throws SQLException; + void truncate(long len) throws SQLException; } |