<o:importFunctions type="java.lang.Math" />//omnifaces, see http://showcase.omnifaces.org/taghandlers/importFunctions
<c:set var="ordersToShow" value="${Math:min(5, processedOrders.size())}" /> // processedOrders is a List
<p:fieldset legend="Last Stuff (${ordersToShow})">[...]</p:fieldset>
${ordersToShow} は java.lang.Double 型 ("${ordersToShow.class}" の出力) であり、sth を出力します。「Last Stuff 2.0」のように。
「Last Stuff 2」のような出力にしたいのですが、どうすればできますか?