javauis/mmapi_qt/baseline/javasrc/com/nokia/microedition/media/InternalPlayer.java
branchRCL_3
changeset 24 0fd27995241b
equal deleted inserted replaced
20:f9bb0fca356a 24:0fd27995241b
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  InternalPlayer
       
    15 *
       
    16 */
       
    17 
       
    18 package com.nokia.microedition.media;
       
    19 
       
    20 import javax.microedition.media.Control;
       
    21 import javax.microedition.media.Player;
       
    22 import javax.microedition.media.MediaException;
       
    23 
       
    24 /**
       
    25  * Internal inteface for MMA players. All players used in MMA must implement
       
    26  * this interface.
       
    27  */
       
    28 public interface InternalPlayer extends Player
       
    29 {
       
    30     /**
       
    31      * Adds new <code>Control</code> to player.
       
    32      * @param aControl New <code>Control</code> to add.
       
    33      * @param aControlType Fully-qualified name of the control class.
       
    34      * @exception MediaException Thrown if new Control cannot be added to
       
    35      * <code>InternalPlayer</code>.
       
    36      */
       
    37     void addControl(Control aControl, String aControlType)
       
    38     throws MediaException;
       
    39 
       
    40 }