equal
deleted
inserted
replaced
|
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: This class provides container for message. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef BOOTCLASSPATH_H |
|
20 #define BOOTCLASSPATH_H |
|
21 |
|
22 #include <string> |
|
23 |
|
24 namespace java // codescanner::namespace |
|
25 { |
|
26 namespace runtime // codescanner::namespace |
|
27 { |
|
28 |
|
29 /** |
|
30 * Finds the add-on JSRs from platform dependent repository. |
|
31 * @param bootClassPath a refernce to wstring where the method can store |
|
32 * the boot classpath. If the there are no add-on JSRs, |
|
33 * this will be empty wstring. |
|
34 */ |
|
35 void getExtendedBootClassPath(std::wstring& bootClassPath); |
|
36 |
|
37 } // namespace runtime |
|
38 } // end namespace java |
|
39 |
|
40 #endif // BOOTCLASSPATH_H |