src/share/classes/com/sun/jdi/event/AccessWatchpointEvent.java

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.jdi.event;
  27 
  28 import com.sun.jdi.*;
  29 
  30 /**
  31  * Notification of a field access in the target VM. Field modifications
  32  * are not considered field accesses.
  33  *
  34  * @see EventQueue
  35  * @see VirtualMachine
  36  *
  37  * @author Robert Field
  38  * @since  1.3
  39  */

  40 public interface AccessWatchpointEvent extends WatchpointEvent {
  41 }


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.jdi.event;
  27 
  28 import com.sun.jdi.*;
  29 
  30 /**
  31  * Notification of a field access in the target VM. Field modifications
  32  * are not considered field accesses.
  33  *
  34  * @see EventQueue
  35  * @see VirtualMachine
  36  *
  37  * @author Robert Field
  38  * @since  1.3
  39  */
  40 @jdk.Supported
  41 public interface AccessWatchpointEvent extends WatchpointEvent {
  42 }