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 VMStartEventSet extends AbstractEventSet { 41 42 VMStartEventSet(EventSet jdiEventSet) { 43 super(jdiEventSet); 44 } 45 46 52 public ThreadReference getThread() { 53 return ((VMStartEvent)oneEvent).thread(); 54 } 55 56 public void notify(JDIListener listener) { 57 listener.vmStart(this); 58 } 59 } 60 61 | Popular Tags |