long nextProperty = -1;
Map<String,Object> properties = new HashMap<String,Object>();
do
{
nextProperty = propertyRecord.getNextProp();
propStore.makeHeavy( propertyRecord );
String key = indexHolder.getStringKey(
propertyRecord.getKeyIndexId() );
Object value = propStore.getValue( propertyRecord );
properties.put( key, value );
if ( nextProperty != Record.NO_NEXT_PROPERTY.intValue() )