VScopeNode parent = ...
VScopeNode child = ...
// Add the node as a child of the parent
parent.remove(child)
...
// Notify console that Navigation pane should be updated.
// (Assumes a general method for firing events).
VConsoleEvent ev = new VConsoleEvent(
myTool, VConsoleActions.UPDATESCOPE, parent);
fireConsoleAction(ev);