summaryrefslogtreecommitdiff
path: root/vdrmanager/src/de/bjusystems/vdrmanager/data/Timerable.java
blob: f3f648ec434cbd8aa623aecee7a6999a7de6f460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
}