* Resets the current connection's points.
*/
public void resetConnectionPoints() {
DiagramElement elem = selectionHandler.getSelectedElements().get(0);
if (elem instanceof Connection) {
execute(new ResetConnectionPointsCommand(this, (Connection) elem));
}
}