249250251252253254255256257258259
// TODO if it does not exist yet - create one? how? return; } if ( s instanceof Node ) { gv.showNode( (Node) s ); } else if ( s instanceof Relationship ) { gv.showNode( ( (Relationship) s ).getStartNode() ); }
253254255256257258259260261262
{ gv.showNode( (Node) s ); } else if ( s instanceof Relationship ) { gv.showNode( ( (Relationship) s ).getStartNode() ); } } } }