public void actionPerformed(ActionEvent e) {
Object o = getValue("CONVERSATION");
if (o == null || !(o instanceof ConversationID))
return;
ConversationID conversation = (ConversationID) o;
FrameworkModel fm = identity.getFramework().getModel();
Request request = fm.getRequest(conversation);
Response response = fm.getResponse(conversation);
List<NamedValue> reqTokens = identity.getRequestTokens(request);
List<NamedValue> respTokens = identity.getResponseTokens(response);
Object c = getValue("COMPONENT");
Component component = null;
if (c instanceof Component)