~vcs-imports/skycastle/trunk

« back to all changes in this revision

Viewing changes to modules/client/src/main/java/org/skycastle/client/hardcoded/ChatOutputHandler.java

  • Committer: zzorn
  • Date: 2008-11-10 14:55:40 UTC
  • Revision ID: vcs-imports@canonical.com-20081110145540-l1hvmkbhnd0612ws
Fixed compile: removed packages of unused code, updated to use new Darkstar API, moved external library versions to the master pom.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* =========================================================================
2
 
 *
3
 
 * This file is part of Skycastle.
4
 
 * 
5
 
 * Skycastle is free software; you can redistribute it and/or modify 
6
 
 * it under the terms of the GNU General Public License as published by the
7
 
 * Free Software Foundation; either version 2 of the License, or (at your 
8
 
 * option) any later version.
9
 
 * 
10
 
 * Skycastle is distributed in the hope that it will be useful, but 
11
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of 
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13
 
 * General Public License for more details.
14
 
 * 
15
 
 * You should have received a copy of the GNU General Public License along 
16
 
 * with Skycastle; if not, write to the Free Software Foundation, 
17
 
 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
 
 * 
19
 
 * ========================================================================= */
20
 
 
21
 
package org.skycastle.client.hardcoded;
22
 
 
23
 
/**
24
 
 * Handler for chat text recieved from other users.
25
 
 */
26
 
public interface ChatOutputHandler
27
 
{
28
 
    /**
29
 
     * Append a line of chat output.
30
 
     *
31
 
     * @param who         User from which the chat message has been received.
32
 
     * @param chatMessage Text of the chat message.
33
 
     */
34
 
    void appendChatOutput( String who, String chatMessage );
35
 
}