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 |
<#list doc.antDatabase.project.property as property>
|
|
25 |
<@pp.changeOutputFile name="property-${property.name}.html" />
|
|
26 |
|
|
27 |
<@helium_api_header title="property ${property.name}"/>
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
<h2>Property ${property.name}</h2>
|
|
32 |
|
|
33 |
<b>Type: </b>${property.type}<br/>
|
|
34 |
<b>Scope: </b>${property.scope}<br/>
|
|
35 |
<b>Editable: </b>${property.editable}<br/>
|
|
36 |
|
|
37 |
<b>Default value: </b>
|
|
38 |
<#assign defaultValue = "Not defined">
|
|
39 |
<#if property.defaultValue?size > 0>
|
|
40 |
<#assign defaultValue = property.defaultValue>
|
|
41 |
</#if>
|
|
42 |
<tt class="docutils literal">${defaultValue}</tt>
|
|
43 |
<br/>
|
|
44 |
|
|
45 |
<#if property.deprecated?length > 0>
|
|
46 |
<b>Deprecated</b>
|
|
47 |
<p>
|
|
48 |
${property.deprecated}
|
|
49 |
</p>
|
|
50 |
</#if>
|
|
51 |
|
|
52 |
<hr/>
|
|
53 |
|
|
54 |
<h3>Documentation</h3>
|
|
55 |
<p>
|
|
56 |
${property.documentation}
|
|
57 |
</p>
|
|
58 |
|
|
59 |
<hr/>
|
|
60 |
|
|
61 |
<h3>Source code</h3>
|
|
62 |
<pre>
|
|
63 |
${property.source?html}
|
|
64 |
</pre>
|
|
65 |
|
|
66 |
|
|
67 |
|
|
68 |
<@helium_api_html_footer/>
|
|
69 |
|
|
70 |
</#list>
|
|
71 |
|
|
72 |
|