}
}
stopAnimation = false;
final GraphWrapper fromGW = this
.findGraphWrapper(this.fromBasicOperator);
// --- define position for the commentPanel - begin --
final Tuple<Point, Dimension> positionAndSizeOfFromOp = this.operatorGraph
.getPositionAndDimension(fromGW);
final Point positionOfFromOp = positionAndSizeOfFromOp.getFirst();
final Dimension sizeOfFromOp = positionAndSizeOfFromOp.getSecond();
// --- define position for the commentPanel - end --
if (this.toBasicOperator == null) {
this.setLocation(positionOfFromOp.x, positionOfFromOp.y
+ sizeOfFromOp.height + (int) this.operatorGraph.PADDING);
return;
}
final GraphWrapper toGW = this.findGraphWrapper(this.toBasicOperator);
// --- define end position for the commentPanel - begin ---
final Tuple<Point, Dimension> positionAndSizeOfToOp = this.operatorGraph
.getPositionAndDimension(toGW);
final Point positionOfToOp = positionAndSizeOfToOp.getFirst();