javauis/amms_qt/javasrc/com/nokia/amms/SoundSource3DImpl.java
branchRCL_3
changeset 24 0fd27995241b
equal deleted inserted replaced
20:f9bb0fca356a 24:0fd27995241b
       
     1 /*
       
     2 * Copyright (c) 2005 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:
       
    15 *
       
    16 */
       
    17 
       
    18 package com.nokia.amms;
       
    19 
       
    20 import javax.microedition.amms.SoundSource3D;
       
    21 
       
    22 /**
       
    23  * SoundSource3DImpl provides functionality defined in SoundSource3D.
       
    24  * This class is used through SoundSource3D interface which implements the
       
    25  * Module interface and does not define any new methods. Methods defined in
       
    26  * Module are implemented in ModuleBase class.
       
    27  * Can be accessed only from com.nokia.amms package.
       
    28  */
       
    29 class SoundSource3DImpl extends ModuleBase
       
    30         implements SoundSource3D
       
    31 {
       
    32     /**
       
    33      * Constructs new EffectModuleImpl instance.
       
    34      * Package private.
       
    35      * @param aEventSourceHandle Handle to event source.
       
    36      * @param aNativeHandle Handle to corresponding native object.
       
    37      * @param aManagerHandle Handle to native global manager.
       
    38      */
       
    39     SoundSource3DImpl(int aEventSourceHandle,
       
    40                       int aNativeHandle,
       
    41                       int aManagerHandle)
       
    42     {
       
    43         super(aEventSourceHandle,
       
    44               aNativeHandle,
       
    45               aManagerHandle);
       
    46     }
       
    47 }