@Override
public void actionPerformed(ActionEvent e) {
// Send a request to the core to save this message
final Request request = Network.getInstance().makeRequest("postboard/postboardmessage", HttpMethod.GET); // GET == read
request.addObserver(new GetMessagesRequestObserver(this)); // add an observer to process the response
request.send(); // send the request
}
/**
* Add the given messages to the local model (they were received from the core).
* This method is called by the GetMessagesRequestObserver