|
1 /* |
|
2 * Copyright (c) 2009 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: Implementation of applicationmanagement components |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // CLASS HEADER |
|
20 #include "ApplicationManagementUtility.h" |
|
21 #include "debug.h" |
|
22 using namespace NApplicationManagement; |
|
23 |
|
24 // CONSTRUCTION |
|
25 CApplicationManagementUtility* CApplicationManagementUtility::NewL() |
|
26 { |
|
27 CApplicationManagementUtility* self = |
|
28 CApplicationManagementUtility::NewLC(); |
|
29 CleanupStack::Pop(); |
|
30 |
|
31 return self; |
|
32 } |
|
33 |
|
34 CApplicationManagementUtility* CApplicationManagementUtility::NewLC() |
|
35 { |
|
36 CApplicationManagementUtility* self = new( ELeave ) CApplicationManagementUtility(); |
|
37 CleanupStack::PushL(self); |
|
38 |
|
39 self->ConstructL(); |
|
40 return self; |
|
41 } |
|
42 |
|
43 // Destructor (virtual by CBase) |
|
44 CApplicationManagementUtility::~CApplicationManagementUtility() |
|
45 { |
|
46 } |
|
47 |
|
48 // Default constructor |
|
49 CApplicationManagementUtility::CApplicationManagementUtility() |
|
50 { |
|
51 } |
|
52 |
|
53 // Second phase construct |
|
54 void CApplicationManagementUtility::ConstructL() |
|
55 { |
|
56 } |
|
57 |
|
58 TBool CApplicationManagementUtility::FindInstalledJavaUidL(const TUid& /*aUid*/) const |
|
59 { |
|
60 return EFalse; |
|
61 } |
|
62 |
|
63 void CApplicationManagementUtility::InstalledSuiteUidsL(RArray <TUid>) |
|
64 { |
|
65 // do nothing |
|
66 } |
|
67 |
|
68 void CApplicationManagementUtility::JavaUidsL(RArray<TUid>& /*aUids*/) |
|
69 { |
|
70 // do nothing |
|
71 } |
|
72 |
|
73 void CApplicationManagementUtility::RefreshJavaRegistryL() |
|
74 { |
|
75 // do nothing |
|
76 } |
|
77 void CApplicationManagementUtility::GetInstalledMidletParametersL( |
|
78 TMidletParameters& /*aMidletParameters*/) |
|
79 { |
|
80 RDEBUG( "CApplicationManagementUtility::GetInstalledMidletParametersL: Start"); |
|
81 //do nothng |
|
82 RDEBUG( "CApplicationManagementUtility::GetInstalledMidletParametersL: end"); |
|
83 } |
|
84 // END OF FILE |