1 /*
2  * This file is part of libbluray
3  * Copyright (C) 2010  William Hahne
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library. If not, see
17  * <http://www.gnu.org/licenses/>.
18  */
19 
20 package javax.tv.service.navigation;
21 
22 import javax.tv.service.SIElement;
23 import javax.tv.service.SIRequest;
24 import javax.tv.service.SIRequestor;
25 import javax.tv.service.ServiceType;
26 import javax.tv.service.Service;
27 import javax.tv.service.guide.ProgramSchedule;
28 
29 public interface ServiceDetails extends SIElement, CAIdentification {
retrieveServiceDescription(SIRequestor requestor)30     public SIRequest retrieveServiceDescription(SIRequestor requestor);
31 
getServiceType()32     public ServiceType getServiceType();
33 
retrieveComponents(SIRequestor requestor)34     public SIRequest retrieveComponents(SIRequestor requestor);
35 
getProgramSchedule()36     public ProgramSchedule getProgramSchedule();
37 
getLongName()38     public String getLongName();
39 
getService()40     public Service getService();
41 
addServiceComponentChangeListener(ServiceComponentChangeListener listener)42     public void addServiceComponentChangeListener(ServiceComponentChangeListener listener);
43 
removeServiceComponentChangeListener(ServiceComponentChangeListener listener)44     public void removeServiceComponentChangeListener(ServiceComponentChangeListener listener);
45 
getDeliverySystemType()46     public DeliverySystemType getDeliverySystemType();
47 }
48