public List<String> getApplications() {
readApplications();
LOGGER.log(Level.INFO, "getApplications()");
return Collections.unmodifiableList(this.applications);
}
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define"
xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form"
xmlns:i="jelly:fmt" xmlns:p="/lib/hudson/project">
<table width="100%">
<th style="white-space:nowrap;">
<td align="left">${it.name} - ${it.description}</td>
</th>
<tr>
<td>
<table width="85%" align="right" border="1">
<f:repeatable var="app" items="${it.applications}" name="app" noAddButton="true">
<tr style="white-space:nowrap;">
<td>${app}</td>
</tr>
</f:repeatable>
</table>
</td>
</tr>
</table>
</j:jelly>