1 7 34 35 package com.sun.tools.example.debug.event; 36 37 import com.sun.jdi.*; 38 import com.sun.jdi.event.*; 39 40 public class AccessWatchpointEventSet extends WatchpointEventSet { 41 42 AccessWatchpointEventSet(EventSet jdiEventSet) { 43 super(jdiEventSet); 44 } 45 46 public void notify(JDIListener listener) { 47 listener.accessWatchpoint(this); 48 } 49 } 50 51 | Popular Tags |