java_stubs/javaregistry/clientserver/client/src/javaregistrybackupsupport.cpp
branchRCL_3
changeset 8 014f8c42e1d4
parent 0 3fd91c96c86c
equal deleted inserted replaced
7:9d598f7f02da 8:014f8c42e1d4
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  javaregistrybackupsupport implementation
       
    15 *              : (__JAVA_EXCLUDED VERSION)
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDES
       
    21 #include "javaregistrybackupsupport.h"
       
    22 
       
    23 using namespace Java::Manager::Registry;
       
    24 
       
    25 // ============================ MEMBER FUNCTIONS ==============================
       
    26 
       
    27 // ---------------------------------------------------------------------------
       
    28 // CJavaRegistryBackupSupport::NewL
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31 EXPORT_C CJavaRegistryBackupSupport* CJavaRegistryBackupSupport::NewL()
       
    32 {
       
    33     User::Leave(KErrNotSupported);
       
    34     return NULL;
       
    35 }
       
    36 
       
    37 // ---------------------------------------------------------------------------
       
    38 // CJavaRegistryBackupSupport::NewLC
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C CJavaRegistryBackupSupport* CJavaRegistryBackupSupport::NewLC()
       
    42 {
       
    43     User::Leave(KErrNotSupported);
       
    44     return NULL;
       
    45 }
       
    46 
       
    47 // ---------------------------------------------------------------------------
       
    48 // CJavaRegistryBackupSupport::~CJavaRegistryBackupSupport
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 EXPORT_C CJavaRegistryBackupSupport::~CJavaRegistryBackupSupport()
       
    52 {
       
    53 }
       
    54 
       
    55 // ---------------------------------------------------------------------------
       
    56 // CJavaRegistryBackupSupport::EntriesExistForDriveL
       
    57 // ---------------------------------------------------------------------------
       
    58 //
       
    59 EXPORT_C TBool CJavaRegistryBackupSupport::
       
    60 EntriesExistForDriveL(const TDriveNumber& /* aDrive */) const
       
    61 {
       
    62     User::Leave(KErrNotSupported);
       
    63     return EFalse;
       
    64 }
       
    65 
       
    66 // ---------------------------------------------------------------------------
       
    67 // CJavaRegistryBackupSupport::ChangeBURState
       
    68 // ---------------------------------------------------------------------------
       
    69 //
       
    70 EXPORT_C TInt CJavaRegistryBackupSupport::
       
    71 ChangeBURState(const TBackupState& /* aState */) const
       
    72 {
       
    73     return KErrNotSupported;
       
    74 }