<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ include file="header.jsp" %> Simple jsp page


Contribution Location :
Name of the node :
Composite :
Manage Nodes <% ManageNodes mNodes = (ManageNodes) application.getAttribute("managenodes"); List nodeSet = mNodes.getNodeSet(); Iterator iterator = nodeSet.iterator(); if (iterator.hasNext() == false) { %> <% } while (iterator.hasNext()) { LocalNode temp = iterator.next(); %> <% } %>
Node Contributions Start Node stop Node
<%= temp.getName() %> <% Iterator contributionList = temp.getContributionList().iterator(); while (contributionList.hasNext()) { %> <%=contributionList.next().getLocation()%>
<% } %>
/>