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

« back to all changes in this revision

Viewing changes to client/src/remuco/IOptionListener.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. Copyright (C) 2006-2009
 
3
 * 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 it under the
 
8
 * terms of the GNU General Public License as published by the Free Software
 
9
 * Foundation, either version 3 of the License, or (at your option) any later
 
10
 * version.
 
11
 * 
 
12
 * Remuco is distributed in the hope that it will be useful, but WITHOUT ANY
 
13
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 
14
 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU General Public License along with
 
17
 * Remuco. If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
package remuco;
 
20
 
 
21
/**
 
22
 * Interface for classes interested in notifications about changes of options.
 
23
 */
 
24
public interface IOptionListener {
 
25
 
 
26
        /**
 
27
         * Notify the change of an option.
 
28
         * 
 
29
         * @param od
 
30
         *            the changed option's descriptor
 
31
         */
 
32
        public void optionChanged(OptionDescriptor od);
 
33
 
 
34
}