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

javax.tv.media.MediaSelectControl Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/**

This is not an official specification document, and usage is restricted.

NOTICE


(c) 2005-2008 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative use only. For example, this file and any files generated from it may be used to generate other documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. This file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms. By contrast, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 927: Java TV API 1.1.1. In the event of a discrepency between this work and the JSR 927 specification, which is available at http://www.jcp.org/en/jsr/detail?id=927, the latter takes precedence. */ package javax.tv.media; import javax.tv.locator.*; import javax.tv.service.selection.*; /** * MediaSelectControl allows the selection of different * kinds of content in a running Player. It serves as * a high level demultiplex control, where the selection is specified * by locators indicating one or more service components to * present.

* * If the Player on which a * MediaSelectControl operates is an instance of * ServiceMediaHandler, then * MediaSelectControl is restricted to operating only on * service components belonging to the service with which the * ServiceMediaHandler is associated (that is, the * ServiceContext's currently selected service). * A MediaSelectControl which is not associated with * a ServiceMediaHandler may also have restrictions * on the set of services which it may access. *

* * Instances of MediaSelectControl may be obtained from a * JMF Player via the methods * getControl(String) and getControls(). * A Java TV API implementation may not always or ever * support MediaSelectControl for a given Player; in such * a case, the failure modes specified by the two aforementioned * methods will apply. *

* Applications should note that the set of selected service components * can be changed by entities other than themselves, * * or as a side-effect of calls to * {@link javax.tv.service.selection.ServiceContext#select(Locator[])}. * * Such changes will be reported to the MediaSelectListeners * currently registered. * * @see javax.media.Player * @see javax.media.Controller#getControls * @see ServiceMediaHandler * @see ServiceContext */ public interface MediaSelectControl extends javax.media.Control { /** * Selects a new service component for presentation. If some * content is currently playing, it is replaced in its entirety by * the specified selection. This is an asynchronous operation * that is completed upon receipt of a * MediaSelectEvent. Note that for certain * selections that imply a different time base or otherwise change * synchronization relationships, a RestartingEvent * will be posted by the Player. *

* * If the specified component is already being presented, * it will continue to be presented and will not be restarted. * A {@link MediaSelectSucceededEvent} is generated immediately. * * * @param component A locator representing an individual service * component to present. * * @throws InvalidLocatorException If the locator does not reference * a selectable service component. * * @throws InvalidServiceComponentException If the specified * service component is not part of the set of services * to which the MediaSelectControl is restricted, or if * it cannot be presented alone. * * @throws InsufficientResourcesException If the operation cannot be * completed due to a lack of system resources. * * @throws SecurityException If the caller does not have * MediaSelectPermission(component) permission. */ public void select(Locator component) throws InvalidLocatorException, InvalidServiceComponentException, InsufficientResourcesException, SecurityException; /** * Selects one or more service components for presentation. If * some content is currently playing, it is replaced in its * entirety by the specified selection. This is an asynchronous * operation that is completed on receipt of a * MediaSelectEvent. *

* * If some of the specified components are already being presented, * these components continue to be presented and will not be * restarted. Their selection is considered successful and is * immediately reported by a {@link MediaSelectSucceededEvent}. * * If some of the specified components are successfully selected and * others are not, a MediaSelectSucceededEvent is * generated with the locator array containing only those * components that were successfully selected. *

* Note that for certain * selections that imply a different time base or otherwise change * synchronization relationships, a RestartingEvent * will be posted by the Player. * * @param components An array of locators representing a set of * individual service components to present together. * * @throws InvalidLocatorException If a locator provided does not * reference a selectable service component. * * @throws InvalidServiceComponentException If a specified service * component is not part of the set of services to which * the MediaSelectControl is restricted, if a * specified service component must be presented in conjunction * with another service component not contained in * components, if the specified set * of service components cannot be presented as a coherent whole, * or if the service components are not all available * simultaneously. * * @throws InsufficientResourcesException If the operation cannot be * completed due to a lack of system resources. * * @throws SecurityException If the caller does not have * MediaSelectPermission(components[i]) permission * for any valid i. * * @throws IllegalArgumentException If components is a * zero-length array. * */ public void select(Locator[] components) throws InvalidLocatorException, InvalidServiceComponentException, InsufficientResourcesException, SecurityException; /** * Adds a service component (for example, subtitles) to the * presentation. This is an asynchronous operation that is * completed on receipt of a MediaSelectEvent. * Components whose addition would require Player * resynchronization are not permitted. If the specified service * component is already part of the presentation, this method does * nothing. * * @param component The locator representing an individual service * component to add to the presentation. * * @throws InvalidLocatorException If the specified locator does * not reference a selectable service component. * * @throws InvalidServiceComponentException If the addition of the * service component would require resynchronization of the * Player, if the service component * is not part of the set of services to which the * MediaSelectControl is restricted, or if the service * component must be presented in conjunction with another service * component that is not part of the current presentation. * * @throws InsufficientResourcesException If the operation cannot be * completed due to a lack of system resources. * * @throws SecurityException If the caller does not have * MediaSelectPermission(component) permission. */ public void add(Locator component) throws InvalidLocatorException, InvalidServiceComponentException, InsufficientResourcesException, SecurityException; /** * Removes a service component from the presentation. This is an * asynchronous operation that is completed on receipt of a * MediaSelectEvent. Components whose removal would * require Player resynchronization are not permitted. * * @param component The locator representing an individual service * component to remove from the presentation. * * @throws InvalidLocatorException If the specified locator does * not reference a service component in the current selection. * * @throws InvalidServiceComponentException If removal of the * specified service component would require resynchronization of * the Player, or if another service component in * the current presentation must be presented in conjunction with * component. * * @throws SecurityException If the caller does not have * MediaSelectPermission(component) permission. */ public void remove(Locator component) throws InvalidLocatorException, InvalidServiceComponentException, SecurityException; /** * Replaces a service component in the presentation. This is an * asynchronous operation that is completed on receipt of a * MediaSelectEvent. Components whose replacement * would require Player resynchronization are not permitted. * * @param fromComponent The locator that represents the service * component to remove from the presentation. * * @param toComponent The locator that represents the service * component to add to the presentation. * * @throws InvalidLocatorException If fromComponent * does not reference a service component in the current * selection, or if toComponent does not reference a * selectable service component. * * @throws InvalidServiceComponentException If * toComponent references a service component that is * not part of the set of services to which the * MediaSelectControl is restricted, if * fromComponent or toComponent reference * service components for which this operation would require * resynchronization of the Player, if another service * component in the current presentation must be presented in * conjunction with fromComponent, or if * toComponent must be presented in conjunction with a * service component not in the resulting presentation. * * @throws InsufficientResourcesException If the operation cannot be * completed due to a lack of system resources. * * @throws SecurityException If the caller does not have * MediaSelectPermission(fromComponent) and * MediaSelectPermission(toComponent) permission. */ public void replace(Locator fromComponent, Locator toComponent) throws InvalidLocatorException, InvalidServiceComponentException, InsufficientResourcesException, SecurityException; /** * Subscribes the specified MediaSelectListener to * receive events related to media selection on this Player. *

* No action is performed if the specified MediaSelectListener * is already subscribed. * * @param listener The MediaSelectListener to which * to send events. */ public void addMediaSelectListener(MediaSelectListener listener); /** * Unsubscribes the specified MediaSelectListener from * receiving events related to media selection on this Player. *

* No action is performed if the specified MediaSelectListener * is not subscribed. * * @param listener The MediaSelectListener to unsubscribe. */ public void removeMediaSelectListener(MediaSelectListener listener); /** * Reports the components of the current selection. * * @return An array of locators representing the service components * in the current selection. */ public Locator[] getCurrentSelection(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy