String string = JdwpString.readString(bb);
ObjectId stringId = idMan.getObjectId(string);
// Since this string isn't referenced anywhere we'll disable garbage
// collection on it so it's still around when the debugger gets back to it.
stringId.disableCollection();
stringId.write(os);
}
private void executeCapabilities(ByteBuffer bb, DataOutputStream os)
throws JdwpException, IOException