java_stubs/javaregistry/clientserver/client/src/writeablejavaregistry.cpp
branchRCL_3
changeset 8 014f8c42e1d4
parent 0 3fd91c96c86c
equal deleted inserted replaced
7:9d598f7f02da 8:014f8c42e1d4
       
     1 /*
       
     2 * Copyright (c) 2006-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:  writeablejavaregistry implementation
       
    15 *              : (__JAVA_EXCLUDED VERSION)
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDES
       
    21 #include "writeablejavaregistry.h"
       
    22 
       
    23 using namespace Java::Manager::Registry;
       
    24 
       
    25 // ============================ MEMBER FUNCTIONS ==============================
       
    26 
       
    27 // ---------------------------------------------------------------------------
       
    28 // CWriteableJavaRegistry::NewL
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31 EXPORT_C CWriteableJavaRegistry* CWriteableJavaRegistry::
       
    32 NewL(TBool /* aUseIntegrity */)
       
    33 {
       
    34     User::Leave(KErrNotSupported);
       
    35     return NULL;
       
    36 }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // CWriteableJavaRegistry::NewLC
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 EXPORT_C CWriteableJavaRegistry* CWriteableJavaRegistry::
       
    43 NewLC(TBool /* aUseIntegrity */)
       
    44 {
       
    45     User::Leave(KErrNotSupported);
       
    46     return NULL;
       
    47 }
       
    48 
       
    49 // ---------------------------------------------------------------------------
       
    50 // CWriteableJavaRegistry::NewL
       
    51 // ---------------------------------------------------------------------------
       
    52 //
       
    53 EXPORT_C CWriteableJavaRegistry* CWriteableJavaRegistry::
       
    54 NewL(TInt64 /* aIntegritySessionId */)
       
    55 {
       
    56     User::Leave(KErrNotSupported);
       
    57     return NULL;
       
    58 }
       
    59 
       
    60 // ---------------------------------------------------------------------------
       
    61 // CWriteableJavaRegistry::NewLC
       
    62 // ---------------------------------------------------------------------------
       
    63 //
       
    64 EXPORT_C CWriteableJavaRegistry* CWriteableJavaRegistry::
       
    65 NewLC(TInt64 /* aIntegritySessionId */)
       
    66 {
       
    67     User::Leave(KErrNotSupported);
       
    68     return NULL;
       
    69 }
       
    70 
       
    71 // ---------------------------------------------------------------------------
       
    72 // CWriteableJavaRegistry::~CWriteableJavaRegistry
       
    73 // ---------------------------------------------------------------------------
       
    74 //
       
    75 EXPORT_C CWriteableJavaRegistry::~CWriteableJavaRegistry()
       
    76 {
       
    77 }
       
    78 
       
    79 // ---------------------------------------------------------------------------
       
    80 // CWriteableJavaRegistry::GenerateUidL
       
    81 // ---------------------------------------------------------------------------
       
    82 //
       
    83 EXPORT_C void CWriteableJavaRegistry::GenerateUidsL(
       
    84     RArray<TUid>& /* aUids */,
       
    85     TInt /* aNumber */) const
       
    86 {
       
    87     User::Leave(KErrNotSupported);
       
    88 }
       
    89 
       
    90 // ---------------------------------------------------------------------------
       
    91 // CWriteableJavaRegistry::RegistryEntryExistsL
       
    92 // ---------------------------------------------------------------------------
       
    93 //
       
    94 EXPORT_C TBool CWriteableJavaRegistry::
       
    95 RegistryEntryExistsL(const TUid& /* aUid */) const
       
    96 {
       
    97     User::Leave(KErrNotSupported);
       
    98     return EFalse;
       
    99 }
       
   100 
       
   101 // ---------------------------------------------------------------------------
       
   102 // CWriteableJavaRegistry::GetRegistryEntryUidsL
       
   103 // ---------------------------------------------------------------------------
       
   104 //
       
   105 EXPORT_C void CWriteableJavaRegistry::
       
   106 GetRegistryEntryUidsL(RArray<TUid>& /* aUids */) const
       
   107 {
       
   108     User::Leave(KErrNotSupported);
       
   109 }
       
   110 
       
   111 // ---------------------------------------------------------------------------
       
   112 // CWriteableJavaRegistry::GetRegistryEntryUidsL
       
   113 // ---------------------------------------------------------------------------
       
   114 //
       
   115 EXPORT_C void CWriteableJavaRegistry::
       
   116 GetRegistryEntryUidsL(TJavaRegistryEntryType /* aType */,
       
   117                       RArray<TUid>& /* aUids */,
       
   118                       TBool /*aAllEntries*/) const
       
   119 {
       
   120     User::Leave(KErrNotSupported);
       
   121 }
       
   122 
       
   123 // ---------------------------------------------------------------------------
       
   124 // CWriteableJavaRegistry::GetRegistryEntryUidsL
       
   125 // ---------------------------------------------------------------------------
       
   126 //
       
   127 EXPORT_C void CWriteableJavaRegistry::GetRegistryEntryUidsL(
       
   128     const RPointerArray<CJavaProperty>& /* aProperties */,
       
   129     RArray<TUid>& /* aUids */, TBool /*aAllEntries*/) const
       
   130 {
       
   131     User::Leave(KErrNotSupported);
       
   132 }
       
   133 
       
   134 // ---------------------------------------------------------------------------
       
   135 // CWriteableJavaRegistry::RegistryEntryL
       
   136 // ---------------------------------------------------------------------------
       
   137 //
       
   138 EXPORT_C CWriteableJavaRegistryEntry* CWriteableJavaRegistry::
       
   139 RegistryEntryL(const TUid& /* aUid */,
       
   140                TBool /*aAllEntries*/) const
       
   141 {
       
   142     User::Leave(KErrNotSupported);
       
   143     return NULL;
       
   144 }
       
   145 
       
   146 
       
   147 // ---------------------------------------------------------------------------
       
   148 // CWriteableJavaRegistry::SetRegistryEntryL
       
   149 // ---------------------------------------------------------------------------
       
   150 //
       
   151 EXPORT_C void CWriteableJavaRegistry::
       
   152 SetRegistryEntryL(CWriteableJavaRegistryEntry& /* aEntry */) const
       
   153 {
       
   154     User::Leave(KErrNotSupported);
       
   155 }
       
   156 
       
   157 // ---------------------------------------------------------------------------
       
   158 // CWriteableJavaRegistry::RemoveRegistryEntryL
       
   159 // ---------------------------------------------------------------------------
       
   160 //
       
   161 EXPORT_C void CWriteableJavaRegistry::
       
   162 RemoveRegistryEntryL(const TUid& /* aUid */,
       
   163                      TBool /* aEmbeddedEntries */,
       
   164                      TBool /* aAllEntries */) const
       
   165 {
       
   166     User::Leave(KErrNotSupported);
       
   167 }
       
   168 
       
   169 // ---------------------------------------------------------------------------
       
   170 // CWriteableJavaRegistry::CWriteableJavaRegistry
       
   171 // ---------------------------------------------------------------------------
       
   172 //
       
   173 EXPORT_C CWriteableJavaRegistry::CWriteableJavaRegistry()
       
   174 {
       
   175 }
       
   176 
       
   177 // ---------------------------------------------------------------------------
       
   178 // CWriteableJavaRegistry::ConstructL
       
   179 // ---------------------------------------------------------------------------
       
   180 //
       
   181 EXPORT_C void CWriteableJavaRegistry::
       
   182 ConstructL(TBool /* aUseIntegrity */,
       
   183            TBool /* aLegacy */)
       
   184 {
       
   185     User::Leave(KErrNotSupported);
       
   186 }
       
   187 
       
   188 // ---------------------------------------------------------------------------
       
   189 // CWriteableJavaRegistry::ConstructL
       
   190 // ---------------------------------------------------------------------------
       
   191 //
       
   192 EXPORT_C void CWriteableJavaRegistry::
       
   193 ConstructL(TInt64 /* aIntegritySessionId */)
       
   194 {
       
   195     User::Leave(KErrNotSupported);
       
   196 }
       
   197 
       
   198 // ---------------------------------------------------------------------------
       
   199 // CWriteableJavaRegistry::DecideEntryTypeAndCreateL
       
   200 // ---------------------------------------------------------------------------
       
   201 //
       
   202 EXPORT_C CWriteableJavaRegistryEntry*
       
   203 CWriteableJavaRegistry::DecideEntryTypeAndCreateL
       
   204 (const TUid& /* aUid */,
       
   205  CJavaPropertyArray* /* aPropArray */) const
       
   206 {
       
   207     User::Leave(KErrNotSupported);
       
   208     return NULL;
       
   209 }