1. Node n = new Node(blabla);
  2. foreach( Node t in nodes ) {
  3.     if( isThis(t)) {
  4.         n = t;
  5.      }
  6. }