Array.java, [...]: Removed redundant modifiers.
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. From-SVN: r72356
This commit is contained in:
parent
eb0043a057
commit
afe6016980
19 changed files with 724 additions and 702 deletions
|
@ -46,7 +46,7 @@ import java.util.Map;
|
|||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
* @since 1.2
|
||||
*/
|
||||
public interface Ref
|
||||
interface Ref
|
||||
{
|
||||
/**
|
||||
* This method returns the fully qualified name of the SQL structured
|
||||
|
@ -56,20 +56,20 @@ public interface Ref
|
|||
* @exception SQLException If an error occurs.
|
||||
* @since 1.2
|
||||
*/
|
||||
public String getBaseTypeName() throws SQLException;
|
||||
String getBaseTypeName() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public Object getObject(Map map) throws SQLException;
|
||||
Object getObject(Map map) throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public Object getObject() throws SQLException;
|
||||
Object getObject() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public void setObject(Object value) throws SQLException;
|
||||
void setObject(Object value) throws SQLException;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue