if (c.getStyle() != Connection.ConnectionStyle.DASHED) {
isDashed = false;
}
}
LineWidget newPredecessor = predecessor;
if (p == specialNullPoint) {
} else if (lastPoint == specialNullPoint) {
} else if (lastPoint != null) {
Point p1 = new Point(lastPoint.x + offx, lastPoint.y + offy);
Point p2 = new Point(p.x + offx, p.y + offy);
LineWidget w = new LineWidget(this, s, connectionList, p1, p2, predecessor, animator, isBold, isDashed);
newPredecessor = w;
connectionLayer.addChild(w);
w.getActions().addAction(hoverAction);
}
processOutputSlot(s, connectionList, controlPointIndex + 1, p, newPredecessor, offx, offy, animator);
}
}