608 """ |
608 """ |
609 Public method to get the list of channels. |
609 Public method to get the list of channels. |
610 |
610 |
611 @return list of channel names (list of string) |
611 @return list of channel names (list of string) |
612 """ |
612 """ |
613 return list(sorted(self.__channels.keys())) |
613 return sorted(self.__channels.keys()) |
614 |
614 |
615 def getChannel(self, channelName): |
615 def getChannel(self, channelName): |
616 """ |
616 """ |
617 Public method to get a channel. |
617 Public method to get a channel. |
618 |
618 |