From 65401007dec08361a9834fe30c6cebf7a67ec88a Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 17 Dec 2001 01:06:35 +0000 Subject: [PATCH] Javadoc edits. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@816 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/chat/client/ChatDisplay.java | 6 +++--- src/java/com/threerings/micasa/client/ChatPanel.java | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/java/com/threerings/crowd/chat/client/ChatDisplay.java b/src/java/com/threerings/crowd/chat/client/ChatDisplay.java index f0b17b42c..90cf19009 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.5 2001/12/16 21:46:46 mdb Exp $ +// $Id: ChatDisplay.java,v 1.6 2001/12/17 01:06:34 mdb Exp $ package com.threerings.crowd.chat; @@ -17,7 +17,7 @@ public interface ChatDisplay * method after the speak message is accepted by the server and * broadcast to everyone in the place. * - * @param type {@link ChatCodes.PLACE_CHAT_TYPE} for a speak message + * @param type {@link ChatCodes#PLACE_CHAT_TYPE} for a speak message * delivered via the place object, or for messages delivered via an * auxilliary chat object, the type code provided when that auxilliary * object was registered. @@ -44,7 +44,7 @@ public interface ChatDisplay * server and should be displayed visually differently from speak * messages. * - * @param type {@link ChatCodes.PLACE_CHAT_TYPE} for a speak message + * @param type {@link ChatCodes#PLACE_CHAT_TYPE} for a speak message * delivered via the place object, or for messages delivered via an * auxilliary chat object, the type code provided when that auxilliary * object was registered. diff --git a/src/java/com/threerings/micasa/client/ChatPanel.java b/src/java/com/threerings/micasa/client/ChatPanel.java index ff5b8b6c8..41f44e9f4 100644 --- a/src/java/com/threerings/micasa/client/ChatPanel.java +++ b/src/java/com/threerings/micasa/client/ChatPanel.java @@ -1,5 +1,5 @@ // -// $Id: ChatPanel.java,v 1.10 2001/12/16 21:47:13 mdb Exp $ +// $Id: ChatPanel.java,v 1.11 2001/12/17 01:06:35 mdb Exp $ package com.threerings.micasa.client; @@ -7,6 +7,7 @@ import java.awt.Color; import java.awt.Dimension; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; + import java.util.StringTokenizer; import javax.swing.JButton; @@ -16,7 +17,10 @@ import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextField; import javax.swing.JTextPane; + import javax.swing.event.AncestorEvent; +import javax.swing.event.AncestorListener; + import javax.swing.text.BadLocationException; import javax.swing.text.Document; import javax.swing.text.Style;