| java.lang.Object org.eclipse.jdi.internal.jdwp.JdwpPacket
All known Subclasses: org.eclipse.jdi.internal.jdwp.JdwpReplyPacket, org.eclipse.jdi.internal.jdwp.JdwpCommandPacket,
JdwpPacket | abstract public class JdwpPacket (Code) | | This class implements the corresponding Java Debug Wire Protocol (JDWP) packet
declared by the JDWP specification.
|
FLAG_REPLY_PACKET | final public static byte FLAG_REPLY_PACKET(Code) | | General JDWP constants.
|
MIN_PACKET_LENGTH | final protected static int MIN_PACKET_LENGTH(Code) | | |
fDataBuf | protected byte[] fDataBuf(Code) | | |
fFlags | protected byte fFlags(Code) | | |
fId | protected int fId(Code) | | Header fields.
|
data | public byte[] data()(Code) | | Returns data of packet. |
dataInStream | public DataInputStream dataInStream()(Code) | | Returns DataInputStream with reply data, or an empty stream if there is none. |
getConstantMaps | public static void getConstantMaps()(Code) | | Retrieves constant mappings.
|
getDataLength | public int getDataLength()(Code) | | Returns length of data in packet. |
getFlagMap | public static String[] getFlagMap()(Code) | | Returns a mapping with string representations of flags. |
getFlags | public byte getFlags()(Code) | | Returns Flags. |
getId | public int getId()(Code) | | Returns Id. |
getLength | public int getLength()(Code) | | Returns total length of packet. |
readSpecificHeaderFields | abstract protected int readSpecificHeaderFields(byte[] bytes, int index) throws IOException(Code) | | Reads header fields that are specific for a type of packet.
|
setData | public void setData(byte[] data)(Code) | | Assigns data to packet.
|
setFlags | void setFlags(byte flags)(Code) | | Set Flags.
|
setId | void setId(int id)(Code) | | Set Id.
|
writeSpecificHeaderFields | abstract protected int writeSpecificHeaderFields(byte[] bytes, int index) throws IOException(Code) | | Writes header fields that are specific for a type of packet.
|
|
|