public void nextAdressResults(Object[] results) throws IOException {
String address = results[ipFetcherIndex].toString();
Object ports = results[portsFetcherIndex];
if (ports != null && ports instanceof NumericRangeList) {
for (PortIterator i = new PortIterator(ports.toString()); i.hasNext(); ) {
output.println(address + DELIMETER + i.next());
}
}
}