1<a id="#${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#foreach ($aspectAttribute in $aspectInfo.getAspectAttributeList()) 15 $aspectAttribute 16 String; required. 17#end 18#end 19 20#[[###]]# Attributes 21 22#foreach ($attribute in $aspectInfo.getAttributeList()) 23<b> 24 <code>${attribute.name}</code> 25 ${util.attributeTypeString($attribute)}; ${util.mandatoryString($attribute)} 26</b> 27#if (!$attribute.docString.isEmpty()) 28 <p> 29 ${attribute.docString.trim()} 30 </p> 31#end 32#end 33