239240241242243244245246
/** * Notify all {@link IChatDisplayListener}s about a cleared chat */ public void notifyChatCleared() { for (IChatDisplayListener chatListener : this.chatDisplayListeners) { chatListener.chatCleared(new ChatClearedEvent(this)); } }