<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> <%@ taglib uri="/WEB-INF/tairtags.tld" prefix="tair" %> <%@ taglib uri="/WEB-INF/input.tld" prefix="input"%> <%@ page import="java.util.*" %> <%@ page import="pub.beans.*" %> <%@ page import="pub.utils.StringUtils" %> <%-- Displays a list of communications as references, as well as buttons we can use to select an individual reference. We use callbacks to send info back to some ancestor window. --%> <% java.util.List communicationBeans = (java.util.List) request.getAttribute("communicationBeans"); %> <%-- We generate two Javascript callback hooks that we'll use in a moment. --%> <%-- List of author names --%>

Select a Communication Reference

<% for (int i = 0; i < communicationBeans.size(); i++) { CommunicationBean commBean = (CommunicationBean) communicationBeans.get(i); %> <% } %>
<%= commBean.getAuthor() %>