if (cell == null) {
LOGGER.warning("No WFS cell exists with name " + name);
continue;
}
LOGGER.fine("Found WFS child " + name + " in path " + path);
list.add(new Cell(name, cell.getLastModified()));
}
// Convert the list of CellChilds to an array, form into a CellList and
// send the CellList directly to the client.
Cell[] childs = list.toArray(new Cell[] {});