HttpServletResponse response, DcwSpatialIndex si)
throws FormatException, IOException {
PrintWriter out = response.getWriter();
out.println("<H3>General Spatial Index Information</H3>");
HtmlListElement list = new HtmlListElement();
list.addElement("Number Of Primitives: " + si.getNumberOfPrimitives());
int nodesInTree = si.getNodesInTree();
list.addElement("Nodes in Tree: " + nodesInTree);
list.addElement("Bounding Rectangle: (" + si.getBoundingX1() + ", "
+ si.getBoundingY1() + ") - (" + si.getBoundingX2() + ", "
+ si.getBoundingY2() + ")");