}
private void executeMethods(ByteBuffer bb, DataOutputStream os)
throws JdwpException, IOException
{
ClassReferenceTypeId refId
= (ClassReferenceTypeId) idMan.readReferenceTypeId(bb);
Class clazz = refId.getType();
VMMethod[] methods = VMVirtualMachine.getAllClassMethods(clazz);
os.writeInt (methods.length);
for (int i = 0; i < methods.length; i++)
{