Package net.sf.tweety.agents
Interface ProtocolListener
-
public interface ProtocolListener
A protocol listener listens on a protocol and is notified whenever an action is executed.- Author:
- Matthias Thimm
-
-
Method Summary
Modifier and Type Method Description void
actionPerformed(ActionEvent actionEvent)
This method is called when an action has been performed in the given protocol.void
protocolTerminated()
This method is called when the protocol terminates.
-
-
-
Method Detail
-
actionPerformed
void actionPerformed(ActionEvent actionEvent)
This method is called when an action has been performed in the given protocol.- Parameters:
actionEvent
- an action event.
-
protocolTerminated
void protocolTerminated()
This method is called when the protocol terminates.
-
-