Added emphasis for required attributes
WW-1392


git-svn-id: https://svn.apache.org/repos/asf/struts/maven/trunk/struts-annotations@493663 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/resources/org/apache/struts/annotations/taglib/apt/tag.ftl b/src/main/resources/org/apache/struts/annotations/taglib/apt/tag.ftl
index 21ed52f..475ed0f 100644
--- a/src/main/resources/org/apache/struts/annotations/taglib/apt/tag.ftl
+++ b/src/main/resources/org/apache/struts/annotations/taglib/apt/tag.ftl
@@ -30,7 +30,13 @@
 			<#list tag.attributes as att>

 				<tr>

 					<td align="left" valign="top">${att.name}</td>

-					<td align="left" valign="top">${att.required?string}</td>

+					<td align="left" valign="top">

+                        <#if att.required>

+                            <strong>true</strong>

+                        <#else>

+                            false

+                        </#if>

+                        </td>

 					<td align="left" valign="top">${att.defaultValue}</td>

 					<td align="left" valign="top">${att.rtexprvalue?string}</td>

 					<td align="left" valign="top">${att.type}</td>