< prev index next >

src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java

Print this page

        

*** 328,361 **** --- 328,365 ---- * The <code>InputStream</code> object that will be * returned by the method <code>getBinaryStream</code>, which is * specified in the <code>ResultSet</code> interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.InputStream binaryStream; /** * The <code>InputStream</code> object that will be * returned by the method <code>getUnicodeStream</code>, * which is specified in the <code>ResultSet</code> interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.InputStream unicodeStream; /** * The <code>InputStream</code> object that will be * returned by the method <code>getAsciiStream</code>, * which is specified in the <code>ResultSet</code> interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.InputStream asciiStream; /** * The <code>Reader</code> object that will be * returned by the method <code>getCharacterStream</code>, * which is specified in the <code>ResultSet</code> interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.Reader charStream; /** * The query that will be sent to the DBMS for execution when the * method <code>execute</code> is called.
*** 504,513 **** --- 508,518 ---- * The <code>java.util.Map</code> object that contains entries mapping * SQL type names to classes in the Java programming language for the * custom mapping of user-defined types. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Map<String, Class<?>> map; /** * A <code>Vector</code> object that holds the list of listeners * that have registered with this <code>RowSet</code> object.
< prev index next >