//maxJobCount = Double.MIN_VALUE;
//for each server ...
for (int i = 0; i < servers.size(); i++) {
Object thisServerKey = servers.get(i);
// get the mapped NetNode ...
NetNode thisNode = serverMap.get(thisServerKey);
NodeSection thisQueue = null;
NodeSection thisServer = null;
// get the input section and the service section ...
try {
thisQueue = thisNode.getSection(NodeSection.INPUT);
thisServer = thisNode.getSection(NodeSection.SERVICE);
} catch (NetException ne) {
}
singleServerContentQueues.clear();
//for each class ...
for (int j = 0; j < classes.size(); j++) {