javauis/softnotification_akn/src/CSoftNotificationEventSource.cpp
branchRCL_3
changeset 19 04becd199f91
equal deleted inserted replaced
16:f5050f1da672 19:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2007-2008 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:  This class provides CJavaEventSource services
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 //  INCLUDE FILES
       
    20 #include <jdebug.h> // DEBUG
       
    21 #include "CSoftNotificationEventSource.h"
       
    22 
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // CSoftNotificationEventSource::CSoftNotificationEventSource
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 CSoftNotificationEventSource::CSoftNotificationEventSource()
       
    29 {
       
    30 }
       
    31 
       
    32 // -----------------------------------------------------------------------------
       
    33 // CSoftNotificationEventSource::ConstructL
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 void CSoftNotificationEventSource::ConstructL(
       
    37     JNIEnv& aJni,
       
    38     jobject aPeer,
       
    39     TJavaEventServer aServer)
       
    40 {
       
    41     DEBUG("CSoftNotificationEventSource::ConstructL");
       
    42 
       
    43     CJavaEventSourceBase::ConstructL(aJni, aPeer, aServer);
       
    44 }
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // CSoftNotificationEventSource::~CSoftNotificationEventSource
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 CSoftNotificationEventSource::~CSoftNotificationEventSource()
       
    51 {
       
    52     DEBUG("CSoftNotificationEventSource::~CSoftNotificationEventSource");
       
    53 }
       
    54 
       
    55 // -----------------------------------------------------------------------------
       
    56 // CSoftNotificationEventSource::FinalizeSvr
       
    57 // From CJavaEventSource.
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 void CSoftNotificationEventSource::FinalizeSvr()
       
    61 {
       
    62     DEBUG("CSoftNotificationEventSource::FinalizeSvr");
       
    63 }
       
    64 
       
    65 //  END OF FILE