jdk/src/jdk.jdi/share/classes/com/sun/jdi/request/ModificationWatchpointRequest.java
changeset 30678 a8b7fd8ede97
parent 25859 3317bb8137f4
child 34894 3248b89d1921
equal deleted inserted replaced
30677:59b772a18fac 30678:a8b7fd8ede97
    28 import com.sun.jdi.*;
    28 import com.sun.jdi.*;
    29 
    29 
    30 /**
    30 /**
    31  * Request for notification when a field is set.
    31  * Request for notification when a field is set.
    32  * This event will be triggered when a value is assigned to the specified
    32  * This event will be triggered when a value is assigned to the specified
    33  * field with a Java<SUP><FONT SIZE="-2">TM</FONT></SUP> programming
    33  * field with a Java&trade; programming
    34  * language statement (assignment, increment, etc) or by a
    34  * language statement (assignment, increment, etc) or by a
    35  * Java Native Interface (JNI) set function (<code>Set&lt;Type&gt;Field,
    35  * Java Native Interface (JNI) set function (<code>Set&lt;Type&gt;Field,
    36  * SetStatic&lt;Type&gt;Field</code>).
    36  * SetStatic&lt;Type&gt;Field</code>).
    37  * Setting a field to a value which is the same as the previous value
    37  * Setting a field to a value which is the same as the previous value
    38  * still triggers this event.
    38  * still triggers this event.