%@ include file="imports.jsp"%>
<%
if (messages.contains()) {
%>
<%
java.util.Iterator it = messages.getWarningsStrings(request).iterator();
while (it.hasNext()) {
%>
| >
<%=style.getWarningStartDecoration()%>
<%=it.next()%>
<%=style.getWarningEndDecoration()%>
|
<% } %>
<%
it = messages.getMessagesStrings(request).iterator();
while (it.hasNext()) {
%>
| >
<%=style.getMessageStartDecoration()%>
<%=it.next()%>
<%=style.getMessageEndDecoration()%>
|
<% } %>
<%
it = messages.getInfosStrings(request).iterator();
while (it.hasNext()) {
%>
| >
<%=style.getInfoStartDecoration()%>
<%=it.next()%>
<%=style.getInfoEndDecoration()%>
|
<% } %>
<% } %>