~ubuntu-branches/ubuntu/natty/remuco/natty

« back to all changes in this revision

Viewing changes to client/src/remuco/comm/IMessageListener.java

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-08-18 23:06:11 UTC
  • Revision ID: james.westby@ubuntu.com-20090818230611-4z6ind4y4yxfa2z2
Tags: upstream-0.9.1.1
ImportĀ upstreamĀ versionĀ 0.9.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*   
 
2
 *   Remuco - A remote control system for media players.
 
3
 *   Copyright (C) 2006-2009 Oben Sonne <obensonne@googlemail.com>
 
4
 *
 
5
 *   This file is part of Remuco.
 
6
 *
 
7
 *   Remuco is free software: you can redistribute it and/or modify
 
8
 *   it under the terms of the GNU General Public License as published by
 
9
 *   the Free Software Foundation, either version 3 of the License, or
 
10
 *   (at your option) any later version.
 
11
 *
 
12
 *   Remuco is distributed in the hope that it will be useful,
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *   GNU General Public License for more details.
 
16
 *
 
17
 *   You should have received a copy of the GNU General Public License
 
18
 *   along with Remuco.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *   
 
20
 */
 
21
package remuco.comm;
 
22
 
 
23
/**
 
24
 * Interface for classes interested in received messages.
 
25
 * 
 
26
 * @see Connection#Connection(String, IConnectionListener, IMessageListener)
 
27
 * 
 
28
 * @author Oben Sonne
 
29
 */
 
30
public interface IMessageListener {
 
31
 
 
32
        public void notifyMessage(Connection conn, Message m);
 
33
 
 
34
}