this.chat = c;
this.initChatController();
}
public FriendChatController(RosterEntry e) {
this.view = new FriendChatView();
this.setView(FriendChatController.this.view);
this.chat = XMPPWrapper.getConnection().getChatManager().createChat(e.getUser(), view.getMessageListener());
this.initChatController();
}