SVNPropertyValue propValue = properties.getPropertyValue(propName);
if (propValue != null) {
handler.handleProperty(target, new SVNPropertyData(propName, propValue, getOptions()));
}
} else {
SVNProperties allProps = properties.asMap();
for (Iterator names = allProps.nameSet().iterator(); names.hasNext();) {
String name = (String) names.next();
SVNPropertyValue val = allProps.getSVNPropertyValue(name);
handler.handleProperty(area.getFile(entry.getName()), new SVNPropertyData(name, val, getOptions()));
}