// Check if it s stream grouping
if (draggedNode instanceof InputNode) {
StreamSourceNode streamNode = this.graph.getGUI()
.getStreamSourceAt(point);
if (streamNode != null) {
streamNode.addInputNode((InputNode) draggedNode);
}
}
this.draggedNode = null;