src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java
changeset 58338 faf791c5a710
parent 54106 9a90236ab64c
equal deleted inserted replaced
58337:270abce77942 58338:faf791c5a710
   328      * The <code>InputStream</code> object that will be
   328      * The <code>InputStream</code> object that will be
   329      * returned by the method <code>getBinaryStream</code>, which is
   329      * returned by the method <code>getBinaryStream</code>, which is
   330      * specified in the <code>ResultSet</code> interface.
   330      * specified in the <code>ResultSet</code> interface.
   331      * @serial
   331      * @serial
   332      */
   332      */
       
   333     @SuppressWarnings("serial") // Not statically typed as Serializable
   333     protected java.io.InputStream binaryStream;
   334     protected java.io.InputStream binaryStream;
   334 
   335 
   335     /**
   336     /**
   336      * The <code>InputStream</code> object that will be
   337      * The <code>InputStream</code> object that will be
   337      * returned by the method <code>getUnicodeStream</code>,
   338      * returned by the method <code>getUnicodeStream</code>,
   338      * which is specified in the <code>ResultSet</code> interface.
   339      * which is specified in the <code>ResultSet</code> interface.
   339      * @serial
   340      * @serial
   340      */
   341      */
       
   342     @SuppressWarnings("serial") // Not statically typed as Serializable
   341     protected java.io.InputStream unicodeStream;
   343     protected java.io.InputStream unicodeStream;
   342 
   344 
   343     /**
   345     /**
   344      * The <code>InputStream</code> object that will be
   346      * The <code>InputStream</code> object that will be
   345      * returned by the method <code>getAsciiStream</code>,
   347      * returned by the method <code>getAsciiStream</code>,
   346      * which is specified in the <code>ResultSet</code> interface.
   348      * which is specified in the <code>ResultSet</code> interface.
   347      * @serial
   349      * @serial
   348      */
   350      */
       
   351     @SuppressWarnings("serial") // Not statically typed as Serializable
   349     protected java.io.InputStream asciiStream;
   352     protected java.io.InputStream asciiStream;
   350 
   353 
   351     /**
   354     /**
   352      * The <code>Reader</code> object that will be
   355      * The <code>Reader</code> object that will be
   353      * returned by the method <code>getCharacterStream</code>,
   356      * returned by the method <code>getCharacterStream</code>,
   354      * which is specified in the <code>ResultSet</code> interface.
   357      * which is specified in the <code>ResultSet</code> interface.
   355      * @serial
   358      * @serial
   356      */
   359      */
       
   360     @SuppressWarnings("serial") // Not statically typed as Serializable
   357     protected java.io.Reader charStream;
   361     protected java.io.Reader charStream;
   358 
   362 
   359     /**
   363     /**
   360      * The query that will be sent to the DBMS for execution when the
   364      * The query that will be sent to the DBMS for execution when the
   361      * method <code>execute</code> is called.
   365      * method <code>execute</code> is called.
   504      * The <code>java.util.Map</code> object that contains entries mapping
   508      * The <code>java.util.Map</code> object that contains entries mapping
   505      * SQL type names to classes in the Java programming language for the
   509      * SQL type names to classes in the Java programming language for the
   506      * custom mapping of user-defined types.
   510      * custom mapping of user-defined types.
   507      * @serial
   511      * @serial
   508      */
   512      */
       
   513     @SuppressWarnings("serial") // Not statically typed as Serializable
   509     private Map<String, Class<?>> map;
   514     private Map<String, Class<?>> map;
   510 
   515 
   511     /**
   516     /**
   512      * A <code>Vector</code> object that holds the list of listeners
   517      * A <code>Vector</code> object that holds the list of listeners
   513      * that have registered with this <code>RowSet</code> object.
   518      * that have registered with this <code>RowSet</code> object.