Name: jl125535 Date: 07/12/2004
FULL PRODUCT VERSION :
java version "1.5.0-beta2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b51)
Java HotSpot(TM) Client VM (build 1.5.0-beta2-b51, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Linux willow.uwyn.office 2.6.7-gentoo-r6 #1 Tue Jun 29 12:05:28 CEST 2004 i686 Intel(R) Pentium(R) 4 CPU 2.00GHz GenuineIntel GNU/Linux
A DESCRIPTION OF THE PROBLEM :
The JDBC ResultSet interface got generified, more specifically the getObject(int, Map) and getObject(String, Map) methods. However, the new signatures getObject(int, Map<String, Class<?>>) and getObject(String, Map<String, Class<?>>) are not backwards compatible with already implemented ResultSets. The compiler complains that the ResultSet implementing class should be abstract since the new method signatures aren't implemented. So this leaves you with the burden of having to maintain two seperate sources files. One for JDK 1.4 and one for 5.0.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile any ResultSet implementing class from 1.4 with 5.0.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Successful compilation.
ACTUAL -
Compiler error:
com.uwyn.rife.database.DbResultSet is not abstract and does not override abstract method getObject(java.lang.String,java.util.Map<java.lang.String,java.lang.Class<?>>) in java.sql.ResultSet
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Compiler error:
com.uwyn.rife.database.DbResultSet is not abstract and does not override abstract method getObject(java.lang.String,java.util.Map<java.lang.String,java.lang.Class<?>>) in java.sql.ResultSet
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.sql.*;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.util.Calendar;
import java.util.Map;
public class DbResultSet implements ResultSet
{
public boolean next() throws SQLException
{
return false;
}
public void close() throws SQLException
{
}
public boolean wasNull() throws SQLException
{
return false;
}
public String getString(int columnIndex) throws SQLException
{
return null;
}
public boolean getBoolean(int columnIndex) throws SQLException
{
return false;
}
public byte getByte(int columnIndex) throws SQLException
{
return 0;
}
public short getShort(int columnIndex) throws SQLException
{
return 0;
}
public int getInt(int columnIndex) throws SQLException
{
return 0;
}
public long getLong(int columnIndex) throws SQLException
{
return 0;
}
public float getFloat(int columnIndex) throws SQLException
{
return 0;
}
public double getDouble(int columnIndex) throws SQLException
{
return 0;
}
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException
{
return null;
}
public byte[] getBytes(int columnIndex) throws SQLException
{
return null;
}
public Date getDate(int columnIndex) throws SQLException
{
return null;
}
public Time getTime(int columnIndex) throws SQLException
{
return null;
}
public Timestamp getTimestamp(int columnIndex) throws SQLException
{
return null;
}
public InputStream getAsciiStream(int columnIndex) throws SQLException
{
return null;
}
public InputStream getUnicodeStream(int columnIndex) throws SQLException
{
return null;
}
public InputStream getBinaryStream(int columnIndex) throws SQLException
{
return null;
}
public String getString(String columnName) throws SQLException
{
return null;
}
public boolean getBoolean(String columnName) throws SQLException
{
return false;
}
public byte getByte(String columnName) throws SQLException
{
return 0;
}
public short getShort(String columnName) throws SQLException
{
return 0;
}
public int getInt(String columnName) throws SQLException
{
return 0;
}
public long getLong(String columnName) throws SQLException
{
return 0;
}
public float getFloat(String columnName) throws SQLException
{
return 0;
}
public double getDouble(String columnName) throws SQLException
{
return 0;
}
public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException
{
return null;
}
public byte[] getBytes(String columnName) throws SQLException
{
return null;
}
public Date getDate(String columnName) throws SQLException
{
return null;
}
public Time getTime(String columnName) throws SQLException
{
return null;
}
public Timestamp getTimestamp(String columnName) throws SQLException
{
return null;
}
public InputStream getAsciiStream(String columnName) throws SQLException
{
return null;
}
public InputStream getUnicodeStream(String columnName) throws SQLException
{
return null;
}
public InputStream getBinaryStream(String columnName) throws SQLException
{
return null;
}
public SQLWarning getWarnings() throws SQLException
{
return null;
}
public void clearWarnings() throws SQLException
{
}
public String getCursorName() throws SQLException
{
return null;
}
public ResultSetMetaData getMetaData() throws SQLException
{
return null;
}
public Object getObject(int columnIndex) throws SQLException
{
return null;
}
public Object getObject(String columnName) throws SQLException
{
return null;
}
public int findColumn(String columnName) throws SQLException
{
return 0;
}
public Reader getCharacterStream(int columnIndex) throws SQLException
{
return null;
}
public Reader getCharacterStream(String columnName) throws SQLException
{
return null;
}
public BigDecimal getBigDecimal(int columnIndex) throws SQLException
{
return null;
}
public BigDecimal getBigDecimal(String columnName) throws SQLException
{
return null;
}
public boolean isBeforeFirst() throws SQLException
{
return false;
}
public boolean isAfterLast() throws SQLException
{
return false;
}
public boolean isFirst() throws SQLException
{
return false;
}
public boolean isLast() throws SQLException
{
return false;
}
public void beforeFirst() throws SQLException
{
}
public void afterLast() throws SQLException
{
}
public boolean first() throws SQLException
{
return false;
}
public boolean last() throws SQLException
{
return false;
}
public int getRow() throws SQLException
{
return 0;
}
public boolean absolute(int row) throws SQLException
{
return false;
}
public boolean relative(int rows) throws SQLException
{
return false;
}
public boolean previous() throws SQLException
{
return false;
}
public void setFetchDirection(int direction) throws SQLException
{
}
public int getFetchDirection() throws SQLException
{
return 0;
}
public void setFetchSize(int rows) throws SQLException
{
}
public int getFetchSize() throws SQLException
{
return 0;
}
public int getType() throws SQLException
{
return 0;
}
public int getConcurrency() throws SQLException
{
return 0;
}
public boolean rowUpdated() throws SQLException
{
return false;
}
public boolean rowInserted() throws SQLException
{
return false;
}
public boolean rowDeleted() throws SQLException
{
return false;
}
public void updateNull(int columnIndex) throws SQLException
{
}
public void updateBoolean(int columnIndex, boolean x) throws SQLException
{
}
public void updateByte(int columnIndex, byte x) throws SQLException
{
}
public void updateShort(int columnIndex, short x) throws SQLException
{
}
public void updateInt(int columnIndex, int x) throws SQLException
{
}
public void updateLong(int columnIndex, long x) throws SQLException
{
}
public void updateFloat(int columnIndex, float x) throws SQLException
{
}
public void updateDouble(int columnIndex, double x) throws SQLException
{
}
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException
{
}
public void updateString(int columnIndex, String x) throws SQLException
{
}
public void updateBytes(int columnIndex, byte[] x) throws SQLException
{
}
public void updateDate(int columnIndex, Date x) throws SQLException
{
}
public void updateTime(int columnIndex, Time x) throws SQLException
{
}
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException
{
}
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException
{
}
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException
{
}
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException
{
}
public void updateObject(int columnIndex, Object x, int scale) throws SQLException
{
}
public void updateObject(int columnIndex, Object x) throws SQLException
{
}
public void updateNull(String columnName) throws SQLException
{
}
public void updateBoolean(String columnName, boolean x) throws SQLException
{
}
public void updateByte(String columnName, byte x) throws SQLException
{
}
public void updateShort(String columnName, short x) throws SQLException
{
}
public void updateInt(String columnName, int x) throws SQLException
{
}
public void updateLong(String columnName, long x) throws SQLException
{
}
public void updateFloat(String columnName, float x) throws SQLException
{
}
public void updateDouble(String columnName, double x) throws SQLException
{
}
public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException
{
}
public void updateString(String columnName, String x) throws SQLException
{
}
public void updateBytes(String columnName, byte[] x) throws SQLException
{
}
public void updateDate(String columnName, Date x) throws SQLException
{
}
public void updateTime(String columnName, Time x) throws SQLException
{
}
public void updateTimestamp(String columnName, Timestamp x) throws SQLException
{
}
public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException
{
}
public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException
{
}
public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException
{
}
public void updateObject(String columnName, Object x, int scale) throws SQLException
{
}
public void updateObject(String columnName, Object x) throws SQLException
{
}
public void insertRow() throws SQLException
{
}
public void updateRow() throws SQLException
{
}
public void deleteRow() throws SQLException
{
}
public void refreshRow() throws SQLException
{
}
public void cancelRowUpdates() throws SQLException
{
}
public void moveToInsertRow() throws SQLException
{
}
public void moveToCurrentRow() throws SQLException
{
}
public Statement getStatement() throws SQLException
{
return null;
}
public Object getObject(int i, Map map) throws SQLException
{
return null;
}
public Ref getRef(int i) throws SQLException
{
return null;
}
public Blob getBlob(int i) throws SQLException
{
return null;
}
public Clob getClob(int i) throws SQLException
{
return null;
}
public Array getArray(int i) throws SQLException
{
return null;
}
public Object getObject(String colName, Map map) throws SQLException
{
return null;
}
public Ref getRef(String colName) throws SQLException
{
return null;
}
public Blob getBlob(String colName) throws SQLException
{
return null;
}
public Clob getClob(String colName) throws SQLException
{
return null;
}
public Array getArray(String colName) throws SQLException
{
return null;
}
public Date getDate(int columnIndex, Calendar cal) throws SQLException
{
return null;
}
public Date getDate(String columnName, Calendar cal) throws SQLException
{
return null;
}
public Time getTime(int columnIndex, Calendar cal) throws SQLException
{
return null;
}
public Time getTime(String columnName, Calendar cal) throws SQLException
{
return null;
}
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException
{
return null;
}
public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException
{
return null;
}
public URL getURL(int columnIndex) throws SQLException
{
return null;
}
public URL getURL(String columnName) throws SQLException
{
return null;
}
public void updateRef(int columnIndex, Ref x) throws SQLException
{
}
public void updateRef(String columnName, Ref x) throws SQLException
{
}
public void updateBlob(int columnIndex, Blob x) throws SQLException
{
}
public void updateBlob(String columnName, Blob x) throws SQLException
{
}
public void updateClob(int columnIndex, Clob x) throws SQLException
{
}
public void updateClob(String columnName, Clob x) throws SQLException
{
}
public void updateArray(int columnIndex, Array x) throws SQLException
{
}
public void updateArray(String columnName, Array x) throws SQLException
{
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Use seperate source files for JDK 1.4 and 5.0 with only the getObject method signatures being different.
(Incident Review ID: 285311)
======================================================================
- duplicates
-
JDK-5073079 Allow unchecked override of generified methods in parameterless classes
-
- Resolved
-