1 26 27 29 package de.nava.informa.core; 30 31 import java.util.Collection ; 32 33 44 public interface ChannelGroupIF extends WithIdMIF, WithTitleMIF, WithChildrenMIF { 45 46 void add(ChannelIF channel); 47 void remove(ChannelIF channel); 48 49 52 Collection getAll(); 53 54 ChannelIF getById(long id); 55 56 ChannelGroupIF getParent(); 57 void setParent(ChannelGroupIF parent); 58 59 void addChild(ChannelGroupIF child); 60 void removeChild(ChannelGroupIF child); 61 } 62 | Popular Tags |