jdk/src/share/classes/javax/sql/rowset/serial/SerialJavaObject.java
changeset 14781 701d0765f75f
parent 14409 d879c92507ec
child 18211 74aeb4741e3d
equal deleted inserted replaced
14780:a65826af2aa4 14781:701d0765f75f
    42  * attempt to serialize all non-static members to permit the object
    42  * attempt to serialize all non-static members to permit the object
    43  * state to be serialized.
    43  * state to be serialized.
    44  * Static or transient fields cannot be serialized; an attempt to serialize
    44  * Static or transient fields cannot be serialized; an attempt to serialize
    45  * them will result in a <code>SerialException</code> object being thrown.
    45  * them will result in a <code>SerialException</code> object being thrown.
    46  *
    46  *
       
    47  * <h4> Thread safety </h4>
       
    48  *
       
    49  * A SerialJavaObject is not safe for use by multiple concurrent threads.  If a
       
    50  * SerialJavaObject is to be used by more than one thread then access to the
       
    51  * SerialJavaObject should be controlled by appropriate synchronization.
       
    52  *
    47  * @author Jonathan Bruce
    53  * @author Jonathan Bruce
    48  */
    54  */
    49 public class SerialJavaObject implements Serializable, Cloneable {
    55 public class SerialJavaObject implements Serializable, Cloneable {
    50 
    56 
    51     /**
    57     /**