/**
* @see java.util.Iterator#next()
*/
public FSEntry next() throws NoSuchElementException {
if (hasNext()) {
FSEntry current = it.next();
if (current instanceof JIFSFile)
((JIFSFile) current).refresh();
if (current instanceof JIFSDirectory)
((JIFSDirectory) current).refresh();