
javax.tv.service.navigation.ServiceComponentChangeEvent Maven / Gradle / Ivy
/*
* @(#)ServiceComponentChangeEvent.java 1.2 00/09/05
*
* Copyright 1998-2000 by Sun Microsystems, Inc.,
* 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
* All rights reserved.
*
* This software is the confidential and proprietary information
* of Sun Microsystems, Inc. ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only in accordance with the terms of the license agreement
* you entered into with Sun.
*/
package javax.tv.service.navigation;
import javax.tv.service.*;
/**
* A ServiceComponentChangeEvent
notifies an
* ServiceComponentChangeListener
of changes to a
* ServiceComponent
detected in a
* ServiceDetails
. Specifically, this event signals the
* addition, removal, or modification of a
* ServiceComponent
.
*
* @see ServiceDetails
* @see ServiceComponent
*/
public class ServiceComponentChangeEvent extends ServiceDetailsSIChangeEvent {
/**
* Constructs a ServiceComponentChangeEvent
.
*
* @param service The ServiceDetails
in which the
* change occurred.
*
* @param type The type of change that occurred.
*
* @param c The ServiceComponent
that changed.
*/
public ServiceComponentChangeEvent(ServiceDetails service,
SIChangeType type, ServiceComponent c) {
super(null,null,null);
}
/**
* Reports the ServiceComponent
that changed. It will be
* identical to the object returned by the inherited
* SIChangeEvent.getSIElement
method.
*
* @return The ServiceComponent
that changed. */
public ServiceComponent getServiceComponent() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy