All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ocap.shared.dvr.RecordedServiceType Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
// RecordedServiceType.java

package org.ocap.shared.dvr;

import javax.tv.service.ServiceType;

/**
 * This class represents the service type value for a RecordedService.
 */
public class RecordedServiceType
    extends ServiceType
{
    /**
     * ServiceType for a Recorded service.
     */
    public static final javax.tv.service.ServiceType
        RECORDED_SERVICE_TYPE = new RecordedServiceType("RECORDED_SERVICE");

    /**
     * Provides an instance of RecordedServiceType.
     *
     * @param name The string name of this type (i.e. "RECORDED_SERVICE").
     */
    protected RecordedServiceType (String name){
        super(name);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy