FileDocCategorySizeDatePackage
VMReply.javaAPI DocphoneME MR2 API (J2ME)2061Wed May 02 17:59:48 BST 2007com.sun.cldchi.tools.memoryprofiler.jdwp

VMReply

public interface VMReply
The VMReply declares interface between transport layer and data providing layer of the memory profiler. It allows reading integet and string values from the packet sent by the VM. The instances of this interface are provided by VMConnection.
see
com.sun.cldchi.tools.memoryprofiler.jdwp.VMConnection

Fields Summary
Constructors Summary
Methods Summary
public intgetInt()
Reads int value from the VM message. Could throw BoundException if tries to read beyond the end of the message

return
int value written to the packet by the VM
see
#getString()

public java.lang.StringgetString()
Reads a String from the VM message. Could throw BoundException if tries to read beyond the end of the message

return
String written to the packet by the VM
see
#getInt()