de.cau.cs.kieler.krep.evalbench.comm
Interface ICommunicationListener

All Known Implementing Classes:
ConnectionView

public interface ICommunicationListener

Listener for communication events which occur when data is sent or received.

Rating yellow
(2010-02-05) review by cmot, msp

Method Summary
 void comment(String comment)
          Write optional comment about the next transaction.
 void dataReceived(String data)
          Executed when data is received from the target.
 void dataSent(String data)
          Executed when data is sent to the target.
 

Method Detail

dataSent

void dataSent(String data)
Executed when data is sent to the target.

Parameters:
data - data to send

dataReceived

void dataReceived(String data)
Executed when data is received from the target.

Parameters:
data - that is received

comment

void comment(String comment)
Write optional comment about the next transaction.

Parameters:
comment - that describes the next transaction in the protocol.