blob: aa371ed5eda6008da668cf20b0675334514bc85a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package de.bjusystems.vdrmanager.data;
public interface Timerable {
public enum TimerState {
None,
Active,
Inactive,
Recording,
Recorded
;
}
public Timer createTimer();
public abstract Timer getTimer();
public TimerState getTimerState();
public TimerMatch getTimerMatch();
}
|