395396397398399400401402
// Opposite of executeHoldEvents private void executeReleaseEvents(ByteBuffer bb, DataOutputStream os) throws JdwpException { throw new NotImplementedException( "Command VirtualMachine.ReleaseEvents not implemented"); }
453454455456457458459460
private void executeSetDefaultStratum(ByteBuffer bb, DataOutputStream os) throws JdwpException { // Optional command, don't implement throw new NotImplementedException( "Command VirtualMachine.SetDefaultStratum not implemented"); }
461462463464465466467468
private void executeAllClassesWithGeneric(ByteBuffer bb, DataOutputStream os) throws JdwpException { // We don't handle generics throw new NotImplementedException( "Command VirtualMachine.AllClassesWithGeneric not implemented"); }
148149150151152153154
public static VMMethod[] getAllClassMethods(Class klass) throws JdwpException { /* not implemented */ throw new NotImplementedException("getAllClassMethods"); }
215216217218219220221
public static ArrayList getLoadRequests(ClassLoader cl) throws JdwpException { /* not implemented */ throw new NotImplementedException("getLoadRequests"); }
223224225226227228229
public static MethodResult executeMethod(Object obj, Thread thread, Class klass, Method method, Object[] values, boolean nonVirtual) throws JdwpException { /* not implemented */ throw new NotImplementedException("executeMethod"); }
238239240241242243244
public static void registerEvent(EventRequest request) throws JdwpException { /* not implemented */ throw new NotImplementedException("registerEvent"); }
245246247248249250251
public static void unregisterEvent(EventRequest request) throws JdwpException { /* not implemented */ throw new NotImplementedException("unregisterEvent"); }
252253254255256257258
public static void clearEvents(byte kind) throws JdwpException { /* not implemented */ throw new NotImplementedException("clearEvents"); }
259260261262263264265
private static VMFrame[] getFrames(Thread thread) throws JdwpException { /* not implemented */ throw new NotImplementedException("getFrames"); }