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 ModificationWatchpointEventSet extends WatchpointEventSet { 41 42 ModificationWatchpointEventSet(EventSet jdiEventSet) { 43 super(jdiEventSet); 44 } 45 46 50 public Value getValueToBe() { 51 return ((ModificationWatchpointEvent)oneEvent).valueToBe(); 52 } 53 54 public void notify(JDIListener listener) { 55 listener.modificationWatchpoint(this); 56 } 57 } 58 59 | Popular Tags |