javauis/amms_qt/jni/src/modulebase.cpp
branchRCL_3
changeset 18 9ac0a0a7da70
parent 17 0fd27995241b
child 19 71c436fe3ce0
--- a/javauis/amms_qt/jni/src/modulebase.cpp	Tue May 11 16:07:20 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,124 +0,0 @@
-/*
-* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:
-*
-*/
-
-//#include <jutils.h>
-#include <logger.h>
-
-#include <mmafunctionserver.h>
-#include <cmmaplayer.h>
-
-// Generated JNI header.
-#include "com_nokia_amms_ModuleBase.h"
-
-#include "cammsmodule.h"
-#include "cammsglobalmanager.h"
-
-/**
- * Calls CAMMSModule::AddPlayerL method.
- * @param aModule Module instance.
- * @param aPlayer Player to add.
- */
-LOCAL_C void AddPlayerL(CAMMSModule* aModule, CMMAPlayer* aPlayer)
-{
-    aModule->AddPlayerL(aPlayer);
-}
-
-/**
- * JNI function.
- */
-JNIEXPORT jint JNICALL Java_com_nokia_amms_ModuleBase__1addPlayer
-(JNIEnv* /*aJniEnv*/,
- jclass,
- jint aEventSourceHandle,
- jint aModuleHandle,
- jint aPlayerHandle)
-{
-    MMAFunctionServer* eventSource =
-        reinterpret_cast< MMAFunctionServer* >(aEventSourceHandle);
-
-    CAMMSModule* module =
-        reinterpret_cast< CAMMSModule* >(aModuleHandle);
-
-    CMMAPlayer* player =
-        reinterpret_cast< CMMAPlayer *>(aPlayerHandle);
-
-    // call CAMMSModule::AddPlayerL through local AddPlayerL function.
-    return eventSource->ExecuteTrap(&AddPlayerL,
-                                    module,
-                                    player);
-}
-
-/**
- * Calls CAMMSModule::RemovePlayerL method.
- * @param aModule Module instance.
- * @param aPlayer Player to remove.
- * @return KErrNotFound if player does not exist in the module.
- */
-LOCAL_C TInt RemovePlayer(CAMMSModule* aModule, CMMAPlayer* aPlayer)
-{
-    return aModule->RemovePlayer(aPlayer);
-}
-
-/**
- * JNI function.
- */
-JNIEXPORT jint JNICALL Java_com_nokia_amms_ModuleBase__1removePlayer
-(JNIEnv* /*aJniEnv*/,
- jclass,
- jint aEventSourceHandle,
- jint aModuleHandle,
- jint aPlayerHandle)
-{
-    MMAFunctionServer* eventSource =
-        reinterpret_cast< MMAFunctionServer *>(aEventSourceHandle);
-
-    CAMMSModule* module =
-        reinterpret_cast< CAMMSModule *>(aModuleHandle);
-
-    CMMAPlayer* player =
-        reinterpret_cast< CMMAPlayer *>(aPlayerHandle);
-
-    // call CAMMSModule::RemovePlayerL through local RemovePlayerL function.
-    return eventSource->Execute(&RemovePlayer,
-                                module,
-                                player);
-}
-
-/**
- * JNI function.
- */
-JNIEXPORT void JNICALL Java_com_nokia_amms_ModuleBase__1dispose
-(JNIEnv*,
- jclass,
- jint aManagerHandle,
- jint aModuleHandle)
-{
-    LOG1( EJavaAMMS, EInfo, "AMMS::ModuleBase.cpp::finalize %d", aModuleHandle);
-
-    // Module to dispose
-    CAMMSModule* module =
-        reinterpret_cast< CAMMSModule* >(aModuleHandle);
-
-    CAMMSGlobalManager* manager =
-        reinterpret_cast< CAMMSGlobalManager* >(aManagerHandle);
-
-    manager->DisposeModule(module);
-}
-//  End of File
-
-
-