jdk/src/share/classes/javax/sql/rowset/serial/SerialStruct.java
changeset 14781 701d0765f75f
parent 14409 d879c92507ec
child 18149 5997c9aedb0e
equal deleted inserted replaced
14780:a65826af2aa4 14781:701d0765f75f
    48  * <P>
    48  * <P>
    49  * The <code>SerialStruct</code> class provides a constructor for creating
    49  * The <code>SerialStruct</code> class provides a constructor for creating
    50  * an instance from a <code>Struct</code> object, a method for retrieving
    50  * an instance from a <code>Struct</code> object, a method for retrieving
    51  * the SQL type name of the SQL structured type in the database, and methods
    51  * the SQL type name of the SQL structured type in the database, and methods
    52  * for retrieving its attribute values.
    52  * for retrieving its attribute values.
       
    53  *
       
    54  * <h4> Thread safety </h4>
       
    55  *
       
    56  * A SerialStruct is not safe for use by multiple concurrent threads.  If a
       
    57  * SerialStruct is to be used by more than one thread then access to the
       
    58  * SerialStruct should be controlled by appropriate synchronization.
       
    59  *
    53  */
    60  */
    54 public class SerialStruct implements Struct, Serializable, Cloneable {
    61 public class SerialStruct implements Struct, Serializable, Cloneable {
    55 
    62 
    56 
    63 
    57     /**
    64     /**