org.openarchitectureware.debug.communication.packets
Class EventPacketWithFrames
java.lang.Object
org.openarchitectureware.debug.communication.packets.AbstractPacket
org.openarchitectureware.debug.communication.packets.EventPacket
org.openarchitectureware.debug.communication.packets.EventPacketWithFrames
public class EventPacketWithFrames
- extends EventPacket
The packet to communicate an event from the runtime process together with the current stack frame information.
- Author:
- Clemens Kadura (zAJKa)
Fields inherited from class org.openarchitectureware.debug.communication.packets.EventPacket |
event |
Fields inherited from class org.openarchitectureware.debug.communication.packets.AbstractPacket |
id, refId |
Method Summary |
void |
readContent(java.io.DataInputStream in)
fill the packet fields from the DataInputStream . |
java.lang.String |
toString()
|
void |
writeContent(java.io.DataOutputStream out)
write the packet fields content to the DataOutputStream . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
cleanStackLevel
public int cleanStackLevel
frames
public java.util.List<SyntaxElementTO> frames
EventPacketWithFrames
public EventPacketWithFrames(int event)
readContent
public void readContent(java.io.DataInputStream in)
throws java.io.IOException
- Description copied from class:
AbstractPacket
- fill the packet fields from the
DataInputStream
. Implementors have to make sure that the
data content matches with the writeContent(out) method!!
- Overrides:
readContent
in class EventPacket
- Parameters:
in
- the DataInputStream
- Throws:
java.io.IOException
writeContent
public void writeContent(java.io.DataOutputStream out)
throws java.io.IOException
- Description copied from class:
AbstractPacket
- write the packet fields content to the
DataOutputStream
. Implementors have to make sure
that the data content matches with the readContent(out) method!!
- Overrides:
writeContent
in class EventPacket
- Parameters:
out
- the DataOutputStream
- Throws:
java.io.IOException
toString
public java.lang.String toString()
- Overrides:
toString
in class EventPacket