<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <%@ page import="edu.cornell.mannlib.vitro.webapp.beans.VClassGroup,edu.cornell.mannlib.vitro.webapp.beans.VClass" %> <%@ page import="java.net.URLEncoder" %> <%@ page import="java.util.Collection" %> <%@ page import="java.util.Iterator" %>

There are not yet any items in the system.

<% Collection classgroupList = (Collection) request.getAttribute("classgroups"); if (classgroupList != null) { Iterator groupIter = classgroupList.iterator(); Object groupObj = null; while (groupIter.hasNext()) { groupObj = groupIter.next(); if (groupObj != null && groupObj instanceof VClassGroup) { VClassGroup theGroup = (VClassGroup) groupObj; %>

<%=theGroup.getPublicName()%>

<% if (theGroup.getVitroClassList()!=null && theGroup.getVitroClassList().size()>0) {%>
    <% Iterator classIter=theGroup.getVitroClassList().iterator(); Object classObj=null; while (classIter.hasNext()) { classObj = classIter.next(); if (classObj!=null && classObj instanceof VClass) { VClass theClass=(VClass)classObj; String linkStr=response.encodeURL("entitylist"); if (theClass.getURI() == null) theClass.setURI("null://null"); String queryStr="?vclassId="+URLEncoder.encode(theClass.getURI(),"UTF-8"); %>
  • <%=theClass.getName()%> (<%=theClass.getEntityCount()%>)
  • <% } }%>
<% } else {%>
  • no entities
<% } } } }%>