From a3eb2e1b7a7f19bdccf8c509d62d1fb761552def Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sun, 27 Oct 2002 22:33:42 +0000 Subject: [PATCH] changed clear() -> clear(boolean force), if force is true, ChatDisplays may not ignore the request to clear. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1849 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/chat/client/ChatDisplay.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/crowd/chat/client/ChatDisplay.java b/src/java/com/threerings/crowd/chat/client/ChatDisplay.java index 4d5717151..79c8e0688 100644 --- a/src/java/com/threerings/crowd/chat/client/ChatDisplay.java +++ b/src/java/com/threerings/crowd/chat/client/ChatDisplay.java @@ -1,5 +1,5 @@ // -// $Id: ChatDisplay.java,v 1.14 2002/08/14 00:48:57 shaper Exp $ +// $Id: ChatDisplay.java,v 1.15 2002/10/27 22:33:42 ray Exp $ package com.threerings.crowd.chat; @@ -12,8 +12,10 @@ public interface ChatDisplay { /** * Called to clear the chat display. + * + * @param force if false, the ChatDisplay can choose to ignore the clear. */ - public void clear (); + public void clear (boolean force); /** * Called to display a chat message.