diff options
Diffstat (limited to 'vdrmanager/src/de/bjusystems/vdrmanager/data/EventContentGroup.java')
-rw-r--r-- | vdrmanager/src/de/bjusystems/vdrmanager/data/EventContentGroup.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/data/EventContentGroup.java b/vdrmanager/src/de/bjusystems/vdrmanager/data/EventContentGroup.java new file mode 100644 index 0000000..03fcd90 --- /dev/null +++ b/vdrmanager/src/de/bjusystems/vdrmanager/data/EventContentGroup.java @@ -0,0 +1,23 @@ +package de.bjusystems.vdrmanager.data; + +/** + * @author lado + * + * Based on epg.c from vdr + * + */ +public interface EventContentGroup { + + static int MovieDrama = 0x10; // + static int NewsCurrentAffairs = 0x20; // + static int Show = 0x30; // + static int Sports = 0x40; // + static int ChildrenYouth = 0x50; // + static int MusicBalletDance = 0x60; // + static int ArtsCulture = 0x70; // + static int SocialPoliticalEconomics = 0x80;// + static int EducationalScience = 0x90;// + static int LeisureHobbies = 0xA0;// + static int Special = 0xB0; // + static int UserDefined = 0xF0;// +}
\ No newline at end of file |