
javax.tv.service.ServiceMinorNumber Maven / Gradle / Ivy
/*
* @(#)ServiceMinorNumber.java 1.8 00/08/06
*
* 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;
/**
* This interface extends the basic ServiceNumber
interface to
* provide the minor number of two-part service numbers described in
* major.minor format.
*
* Service and ServiceDetails objects may optionally implement this
* interface.
*
* The major number of a service is obtained from the
* ServiceNumber.getServiceNumber
method.
*
* @see Service
*
* @see javax.tv.service.navigation.ServiceDetails
*
* @see ServiceNumber#getServiceNumber
*
* @see Optionally implemented interfaces
*/
public interface ServiceMinorNumber extends ServiceNumber {
/**
* Reports the minor number of the service.
*
* @return The minor number of this service.
*/
public int getMinorNumber();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy