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 abstract class WatchpointEventSet extends LocatableEventSet { 41 42 WatchpointEventSet(EventSet jdiEventSet) { 43 super(jdiEventSet); 44 } 45 46 52 public Field getField() { 53 return ((WatchpointEvent)oneEvent).field(); 54 } 55 56 63 public ObjectReference getObject() { 64 return ((WatchpointEvent)oneEvent).object(); 65 } 66 67 70 public Value getValueCurrent() { 71 return ((WatchpointEvent)oneEvent).valueCurrent(); 72 } 73 } 74 75 | Popular Tags |