• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<a name="#${aspectName}"></a>
2
3#[[##]]# ${aspectName}
4
5<pre>
6${util.aspectSummary($aspectName, $aspectInfo)}
7</pre>
8
9$aspectInfo.getDocString()
10
11#[[###]]# Aspect Attributes
12
13#if (!$aspectInfo.getAspectAttributeList().isEmpty())
14<table class="params-table">
15  <colgroup>
16    <col class="col-param" />
17    <col class="col-description" />
18  </colgroup>
19  <tbody>
20#foreach ($aspectAttribute in $aspectInfo.getAspectAttributeList())
21    <tr id="${aspectName}-${aspectAttribute}">
22      <td><code>${aspectAttribute}</code></td>
23      <td>
24        String; required.
25#end
26      </td>
27    </tr>
28#end
29  </tbody>
30</table>
31
32#[[###]]# Attributes
33
34#if (!$aspectInfo.getAttributeList().isEmpty())
35<table class="params-table">
36  <colgroup>
37    <col class="col-param" />
38    <col class="col-description" />
39  </colgroup>
40  <tbody>
41#foreach ($attribute in $aspectInfo.getAttributeList())
42    <tr id="${aspectName}-${attribute.name}">
43      <td><code>${attribute.name}</code></td>
44      <td>
45        ${util.attributeTypeString($attribute)}; ${util.mandatoryString($attribute)}
46#if (!$attribute.docString.isEmpty())
47        <p>
48          ${attribute.docString.trim()}
49        </p>
50#end
51      </td>
52    </tr>
53#end
54  </tbody>
55</table>
56#end
57