* the result map
*/
public void updateNodes( int level, Map<String, ResourceDecorator> resultMap )
{
updating = true;
ResourceDecorator tempDecorator;
String uri;
DNVNode tempNode;
// Add all the nodes
for( Entry<String, ResourceDecorator> entry : resultMap.entrySet() )
{
tempDecorator = entry.getValue();
uri = tempDecorator.getUri();
if( !allNodesByBbId.containsKey( uri ) )
{
tempNode = new DNVNode( tempDecorator, this );
tempNode.setPosition( (float)( 100.0 * Math.random() ), (float)( 100.0 * Math.random() ) );
System.out.println( "Adding node to Wigi: " + uri );