synchronized (theMutexObject) {
for(UIEventCreateNewConnection buf : this.connections) {
if(aif != null && buf.getConnectionId() == aif.getConnectId()) {
ITextComponent tc = this.desktop.getComponent(buf.getFileId());
if(tc != null) {
tc.selectAnchor(aif.getAnchorValue());
}
this.desktop.selectTabAt(buf.getFileId());
break;
}
}