%-- IBM Confidential OCO Source Material --%>
<%-- 5724-J34 (C) COPYRIGHT International Business Machines Corp. 2004 --%>
<%-- The source code for this program is not published or otherwise divested --%>
<%-- of its trade secrets, irrespective of what has been deposited with the --%>
<%-- U.S. Copyright Office. --%>
<%@ page language="java" import="java.util.*"%>
<%@ taglib uri="/WEB-INF/ibmcommon.tld" prefix="ibmcommon" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/tiles.tld" prefix="tiles" %>
|
|
<%
String key="";
String value="";
Iterator i = summary.iterator();
while (i.hasNext()) {
key = (String) i.next();
if (i.hasNext()) {
value = (String) i.next();
}
if (key == "" && value == "") {
// Place a dummy entry in the table to separate the cluster members
%>
<%
} else {
// Add the entry to the table
%>
<%= key%> |
<%= value%> |
<%
}
%>
<%
}
%>