587
|
1 |
<#--
|
|
2 |
============================================================================
|
|
3 |
Name :
|
|
4 |
Part of : Helium
|
|
5 |
|
|
6 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
7 |
All rights reserved.
|
|
8 |
This component and the accompanying materials are made available
|
|
9 |
under the terms of the License "Eclipse Public License v1.0"
|
|
10 |
which accompanies this distribution, and is available
|
|
11 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
12 |
|
|
13 |
Initial Contributors:
|
|
14 |
Nokia Corporation - initial contribution.
|
|
15 |
|
|
16 |
Contributors:
|
|
17 |
|
|
18 |
Description:
|
|
19 |
|
|
20 |
============================================================================
|
|
21 |
-->
|
|
22 |
<#include "api.ftllib"/>
|
|
23 |
|
|
24 |
<@helium_api_header title="Properties (Helium API)"/>
|
|
25 |
|
|
26 |
<script type="text/javascript" src="properties-table.js"></script>
|
|
27 |
|
|
28 |
<#assign propertyInfo = {}>
|
|
29 |
<#list doc.antDatabase.project.property as property>
|
|
30 |
<#assign propertyInfo = propertyInfo + {property.name: property}>
|
|
31 |
</#list>
|
|
32 |
|
|
33 |
<center>
|
|
34 |
<h1>Properties table(Sortable)
|
|
35 |
</h1>
|
|
36 |
|
|
37 |
<table class="sortable" border="1" cellpadding="5" ID="tableSort">
|
|
38 |
<tr>
|
|
39 |
<th onmouseover="this.style.cursor = 'pointer';"><font color="blue"><u>Property</u></font></th>
|
|
40 |
<th onmouseover="this.style.cursor = 'pointer';"><font color="blue"><u>Description</u></font></th>
|
|
41 |
<th onmouseover="this.style.cursor = 'pointer';"><font color="blue"><u>Scope</u></font></th>
|
|
42 |
<th onmouseover="this.style.cursor = 'pointer';"><font color="blue"><u>Editable</u></font></th>
|
|
43 |
<th onmouseover="this.style.cursor = 'pointer';"><font color="blue"><u>Type</u></font></th>
|
|
44 |
</tr>
|
|
45 |
<#list propertyInfo?keys?sort as name>
|
|
46 |
<tr>
|
|
47 |
<td><a href="property-${name}.html" title="${name}" target="classframe">${name}</a></td>
|
|
48 |
<td>${propertyInfo[name].summary}</td>
|
|
49 |
<td>${propertyInfo[name].scope}</td>
|
|
50 |
<td>${propertyInfo[name].editable}</td>
|
|
51 |
<td>${propertyInfo[name].type}</td>
|
|
52 |
</tr>
|
|
53 |
</#list>
|
|
54 |
</table>
|
|
55 |
|
|
56 |
|
|
57 |
<@helium_api_html_footer/>
|
|
58 |
|
|
59 |
|
|
60 |
|