java_stubs/javaregistry/clientserver/client/src/javaregistry.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:  javaregistry implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "javaregistry.h"
       
    20 
       
    21 using namespace Java;
       
    22 using namespace Java::Manager::Registry;
       
    23 
       
    24 // ============================ MEMBER FUNCTIONS ==============================
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // CJavaRegistry::NewL
       
    28 // ---------------------------------------------------------------------------
       
    29 //
       
    30 EXPORT_C CJavaRegistry* CJavaRegistry::NewL()
       
    31 {
       
    32     User::Leave(KErrNotSupported);
       
    33     return NULL;
       
    34 }
       
    35 
       
    36 // ---------------------------------------------------------------------------
       
    37 // CJavaRegistry::NewLC
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 EXPORT_C CJavaRegistry* CJavaRegistry::NewLC()
       
    41 {
       
    42     User::Leave(KErrNotSupported);
       
    43     return NULL;
       
    44 }
       
    45 
       
    46 // ---------------------------------------------------------------------------
       
    47 // CJavaRegistry::RegistryEntryExistsL
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 EXPORT_C TBool CJavaRegistry::RegistryEntryExistsL(const TUid& /*aUid*/) const
       
    51 {
       
    52     User::Leave(KErrNotSupported);
       
    53     return EFalse;
       
    54 }
       
    55 
       
    56 // ---------------------------------------------------------------------------
       
    57 // CJavaRegistry::GetRegistryEntryUidsL
       
    58 // ---------------------------------------------------------------------------
       
    59 //
       
    60 EXPORT_C void CJavaRegistry::GetRegistryEntryUidsL(RArray<TUid>& /*aUids*/) const
       
    61 {
       
    62     User::Leave(KErrNotSupported);
       
    63 }
       
    64 
       
    65 // ---------------------------------------------------------------------------
       
    66 // CJavaRegistry::GetRegistryEntryUidsL
       
    67 // ---------------------------------------------------------------------------
       
    68 //
       
    69 EXPORT_C void CJavaRegistry::GetRegistryEntryUidsL
       
    70 (TJavaRegistryEntryType /*aType*/, RArray<TUid>& /*aUids*/) const
       
    71 {
       
    72     User::Leave(KErrNotSupported);
       
    73 }
       
    74 
       
    75 // ---------------------------------------------------------------------------
       
    76 // CJavaRegistry::RegistryEntryL
       
    77 // ---------------------------------------------------------------------------
       
    78 //
       
    79 EXPORT_C CJavaRegistryEntry* CJavaRegistry::
       
    80 RegistryEntryL(const TUid& /*aUid*/) const
       
    81 {
       
    82     User::Leave(KErrNotSupported);
       
    83     return NULL;
       
    84 }
       
    85 
       
    86 // ---------------------------------------------------------------------------
       
    87 // CJavaRegistry::~CJavaRegistry
       
    88 // ---------------------------------------------------------------------------
       
    89 //
       
    90 CJavaRegistry::~CJavaRegistry()
       
    91 {
       
    92 }
       
    93 
       
    94 // ---------------------------------------------------------------------------
       
    95 // CJavaRegistry::CJavaRegistry
       
    96 // ---------------------------------------------------------------------------
       
    97 //
       
    98 CJavaRegistry::CJavaRegistry()
       
    99 {
       
   100 }