I want to create a simple Eclipse template showing me all current page parameters and its values.
First approach would be something like:
<c:forEach var="pname" items="$<PARAM_NAMES>">
<tr>
<td>
<h:outputText value="${param}" />
</td>
<td>
<h:outputText value="${param.pname}" />
</td>
</tr>
</c:forEach>
Do you have any idea?