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

« back to all changes in this revision

Viewing changes to client/src/remuco/player/AbstractAction.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.player;
 
22
 
 
23
public abstract class AbstractAction {
 
24
 
 
25
        public final int id;
 
26
 
 
27
        public final String label;
 
28
 
 
29
        private String disabledReason;
 
30
 
 
31
        private boolean enabled = true;
 
32
 
 
33
        public AbstractAction(int id, String label) {
 
34
 
 
35
                this.id = id;
 
36
                this.label = label;
 
37
        }
 
38
 
 
39
        public void disbale(String reason) {
 
40
                enabled = false;
 
41
                disabledReason = reason;
 
42
        }
 
43
 
 
44
        public void enable() {
 
45
                enabled = true;
 
46
        }
 
47
 
 
48
        public String getDisabledReason() {
 
49
                return disabledReason;
 
50
        }
 
51
 
 
52
        public boolean isEnabled() {
 
53
                return enabled;
 
54
        }
 
55
 
 
56
        public abstract boolean isItemAction();
 
57
 
 
58
        public abstract boolean isListAction();
 
59
 
 
60
}