summaryrefslogtreecommitdiff
path: root/libjava/java/sql/Array.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:49:51 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:49:51 +0000
commitcabab96a6f79bc5549b29def5b50432b4cc440ef (patch)
tree5f8e4e09e41fddb2564b5726cad645fa7ddb6ef8 /libjava/java/sql/Array.java
parenta70e2f3341882b4d5ec11cde619e7135ee4f9626 (diff)
downloadgcc-cabab96a6f79bc5549b29def5b50432b4cc440ef.tar.gz
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/Array.java')
-rw-r--r--libjava/java/sql/Array.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/libjava/java/sql/Array.java b/libjava/java/sql/Array.java
index 51c4ee8fa8e..0bb84cbe3d1 100644
--- a/libjava/java/sql/Array.java
+++ b/libjava/java/sql/Array.java
@@ -53,7 +53,7 @@ public interface Array
* @param The name of the SQL type of the elements in this array.
* @exception SQLException If an error occurs.
*/
- public String getBaseTypeName() throws SQLException;
+ String getBaseTypeName() throws SQLException;
/**
* Returns the JDBC type identifier of the elements in this
@@ -64,7 +64,7 @@ public interface Array
* @exception SQLException If an error occurs.
* @see Types
*/
- public int getBaseType() throws SQLException;
+ int getBaseType() throws SQLException;
/**
* Returns the contents of this array. This object returned
@@ -73,7 +73,7 @@ public interface Array
* @return The contents of the array as an array of Java objects.
* @exception SQLException If an error occurs.
*/
- public Object getArray() throws SQLException;
+ Object getArray() throws SQLException;
/**
* Returns the contents of this array. The specified
@@ -84,7 +84,7 @@ public interface Array
* @return The contents of the array as an array of Java objects.
* @exception SQLException If an error occurs.
*/
- public Object getArray(Map map) throws SQLException;
+ Object getArray(Map map) throws SQLException;
/**
* Returns a portion of this array starting at <code>index</code>
@@ -99,7 +99,7 @@ public interface Array
* @return The requested portion of the array.
* @exception SQLException If an error occurs.
*/
- public Object getArray(long index, int count) throws SQLException;
+ Object getArray(long index, int count) throws SQLException;
/**
* This method returns a portion of this array starting at <code>index</code>
@@ -116,7 +116,7 @@ public interface Array
* @return The requested portion of the array.
* @exception SQLException If an error occurs.
*/
- public Object getArray(long index, int count, Map map) throws SQLException;
+ Object getArray(long index, int count, Map map) throws SQLException;
/**
* Returns the elements in the array as a <code>ResultSet</code>.
@@ -128,7 +128,7 @@ public interface Array
* @exception SQLException If an error occurs.
* @see ResultSet
*/
- public ResultSet getResultSet() throws SQLException;
+ ResultSet getResultSet() throws SQLException;
/**
* This method returns the elements in the array as a <code>ResultSet</code>.
@@ -143,7 +143,7 @@ public interface Array
* @exception SQLException If an error occurs.
* @see ResultSet
*/
- public ResultSet getResultSet(Map map) throws SQLException;
+ ResultSet getResultSet(Map map) throws SQLException;
/**
* This method returns a portion of the array as a <code>ResultSet</code>.
@@ -160,7 +160,7 @@ public interface Array
* @exception SQLException If an error occurs.
* @see ResultSet
*/
- public ResultSet getResultSet(long index, int count) throws SQLException;
+ ResultSet getResultSet(long index, int count) throws SQLException;
/**
* This method returns a portion of the array as a <code>ResultSet</code>.
@@ -180,6 +180,6 @@ public interface Array
* @exception SQLException If an error occurs.
* @see ResultSet
*/
- public ResultSet getResultSet(long index, int count, Map map)
+ ResultSet getResultSet(long index, int count, Map map)
throws SQLException;
}