1 11 package org.eclipse.jdi.internal.request; 12 13 14 import org.eclipse.jdi.internal.VirtualMachineImpl; 15 import org.eclipse.jdi.internal.event.MethodEntryEventImpl; 16 17 import com.sun.jdi.request.MethodEntryRequest; 18 19 25 public class MethodEntryRequestImpl extends EventRequestImpl implements MethodEntryRequest { 26 29 public MethodEntryRequestImpl(VirtualMachineImpl vmImpl) { 30 super("MethodEntryRequest", vmImpl); } 32 33 36 protected final byte eventKind() { 37 return MethodEntryEventImpl.EVENT_KIND; 38 } 39 } 40 | Popular Tags |