Reports & Research
(Web Notes Login Required)
edit
<%
Report[] reports = (Report[]) pageContext.getAttribute("reports");
Company[] companies = (Company[]) pageContext.getAttribute("companies");
String url = (String) pageContext.getAttribute("url");
String text = (String) pageContext.getAttribute("text");
if (companies != null)
{
%>
<%
for (int i=0; i < companies.length; i++ )
if ( companies[i] != null && !companies[i].getSymbol().equals("") )
{
if ( !companies[i].getStatus().equals("Down") )
{
%>
<%=companies[i].getSymbol()%> |
<%
}
else
{
%>
<%=companies[i].getSymbol()%> |
<%
}
}
%>
<%
}
%>
|