}
// methods for recording the times when meta data is enabled.
public synchronized void recordTime( String path, long created, long modified )
{
TimeRecord rec = (TimeRecord)timestamps.get(path);
if( null == rec ) {
rec = new TimeRecord(created, modified);
timestamps.put(path, rec);
}
else
{
if( created > 0 )
rec.setCreatedTime(created);
if( modified > 0 )
rec.setModifiedTime(modified);
}
}