long size = SVNReader.getLong(direntProps, 2);
boolean hasProps = SVNReader.getBoolean(direntProps, 3);
long createdRevision = SVNReader.getLong(direntProps, 4);
Date createdDate = SVNDate.parseDate(SVNReader.getString(direntProps, 5));
String lastAuthor = SVNReader.getString(direntProps, 6);
handler.handleDirEntry(new SVNDirEntry(url.appendPath(name, false), repositoryRoot, name, kind, size, hasProps, createdRevision, createdDate, lastAuthor));
}
}
// get comments.
if (includeComment && entries != null) {